time_t should be a signed type.

This commit is contained in:
Adam Sutton 2012-08-24 13:03:57 +01:00
parent 78107997b7
commit 1d15fb9614

View file

@ -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 */