diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:53 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:05:53 +0200 |
commit | 618dfb51d93898632830f1b87443d3f748780871 (patch) | |
tree | bac520a2e261154f8d35b0cb8aa345f5ab373811 /shared/systemFunctions.h | |
parent | 3.4 (diff) | |
download | FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2 FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip |
3.5
Diffstat (limited to 'shared/systemFunctions.h')
-rw-r--r-- | shared/systemFunctions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/systemFunctions.h b/shared/systemFunctions.h index 0adec62a..d197ceb6 100644 --- a/shared/systemFunctions.h +++ b/shared/systemFunctions.h @@ -12,11 +12,11 @@ namespace FreeFileSync { - +//evaluate GetLastError()/errno and assemble specific error message #ifdef FFS_WIN -wxString getLastErrorFormatted(unsigned long lastError = 0); //try to get additional Windows error information +wxString getLastErrorFormatted(unsigned long lastError = 0); #elif defined FFS_LINUX -wxString getLastErrorFormatted(int lastError = 0); //try to get additional Linux error information +wxString getLastErrorFormatted(int lastError = 0); #endif } |