diff options
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 } |