summaryrefslogtreecommitdiff
path: root/shared/systemFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/systemFunctions.h')
-rw-r--r--shared/systemFunctions.h6
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
}
bgstack15