summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qsystemerror.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qsystemerror.cpp')
-rw-r--r--src/corelib/kernel/qsystemerror.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qsystemerror.cpp b/src/corelib/kernel/qsystemerror.cpp
index 030c38e045..3edc7f95f8 100644
--- a/src/corelib/kernel/qsystemerror.cpp
+++ b/src/corelib/kernel/qsystemerror.cpp
@@ -136,9 +136,9 @@ static QString standardLibraryErrorString(int errorCode)
QString QSystemError::string(ErrorScope errorScope, int errorCode)
{
- switch(errorScope) {
+ switch (errorScope) {
case NativeError:
-#if defined (Q_OS_WIN)
+#if defined(Q_OS_WIN)
return windowsErrorString(errorCode);
#endif // else unix: native and standard library are the same
case StandardLibraryError: