time_t should be a signed type.
This commit is contained in:
parent
78107997b7
commit
1d15fb9614
1 changed files with 2 additions and 2 deletions
|
@ -458,9 +458,9 @@ char *md5sum ( const char *str );
|
|||
|
||||
/* printing */
|
||||
#if __SIZEOF_LONG__ == 8
|
||||
#define PRItime_t PRIu64
|
||||
#define PRItime_t PRId64
|
||||
#else
|
||||
#define PRItime_t "l" PRIu32
|
||||
#define PRItime_t "l" PRId32
|
||||
#endif
|
||||
|
||||
#endif /* TV_HEAD_H */
|
||||
|
|
Loading…
Add table
Reference in a new issue