Switch to a 64-bit time_t everywhere except 32-bit x86.
Thus, BeOS compatibility is preserved (and there is no risk of breaking GCC5<->GCC2 interoperation on hybrid builds.) This commit only makes the actual change, the build fixes are in the next commit.
This commit is contained in:
@@ -1615,8 +1615,13 @@
|
||||
#define B_PRIdINO FSSH_B_PRIdINO
|
||||
#define B_PRIiINO FSSH_B_PRIiINO
|
||||
/* time_t */
|
||||
#define B_PRIdTIME FSSH_B_PRId32
|
||||
#define B_PRIiTIME FSSH_B_PRIi32
|
||||
#if defined(__i386__) && !defined(__x86_64__)
|
||||
# define B_PRIdTIME FSSH_B_PRId32
|
||||
# define B_PRIiTIME FSSH_B_PRIi32
|
||||
#else
|
||||
# define B_PRIdTIME FSSH_B_PRId64
|
||||
# define B_PRIiTIME FSSH_B_PRIi64
|
||||
#endif
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user