23 lines
563 B
Diff
23 lines
563 B
Diff
related issue: https://github.com/pwsafe/pwsafe/issues/563
|
|
|
|
commit 497246d4beffcd9347b443b1622e4ea64a7b389c
|
|
Author: ronys <ronys@pwsafe.org>
|
|
Date: Fri Jul 5 22:23:28 2019 +0300
|
|
|
|
Fix GH563: broken build on 32 bit gcc 9.1
|
|
|
|
diff --git src/os/unix/pws_time.h src/os/unix/pws_time.h
|
|
index 4be9ffb90..683cb48b9 100644
|
|
--- src/os/unix/pws_time.h
|
|
+++ src/os/unix/pws_time.h
|
|
@@ -14,8 +14,7 @@
|
|
#include <time.h>
|
|
#endif
|
|
|
|
-typedef time_t __time32_t;
|
|
-#ifndef __time64_t
|
|
+#if !defined(__time64_t) && !defined(__TIME64_T_TYPE)
|
|
typedef uint64_t __time64_t;
|
|
#endif
|
|
|