Correct mistake in format string for time_t on 32bit.

This commit is contained in:
Adam Sutton 2012-08-24 12:55:54 +01:00
parent f9f39bf585
commit 78107997b7

View file

@ -460,7 +460,7 @@ char *md5sum ( const char *str );
#if __SIZEOF_LONG__ == 8
#define PRItime_t PRIu64
#else
#define PRItime_t PRIu32
#define PRItime_t "l" PRIu32
#endif
#endif /* TV_HEAD_H */