aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/src/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/src/platform.h')
-rw-r--r--src/common/src/platform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/src/platform.h b/src/common/src/platform.h
index d8eacaa8..84c6b636 100644
--- a/src/common/src/platform.h
+++ b/src/common/src/platform.h
@@ -76,9 +76,9 @@
#define EMU_FASTCALL __fastcall
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
- if (localtime_s(result, clock) == 0)
- return result;
- return NULL;
+ if (localtime_s(result, clock) == 0)
+ return result;
+ return NULL;
}
#else