remove warnings

This commit is contained in:
drmocm
2023-11-07 10:06:30 +01:00
parent 0c603bc421
commit 3884037c93
3 changed files with 9 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ extern uint32_t dddvb_debug;
do { if (dddvb_debug & _mask_) fprintf(stderr, __VA_ARGS__); } while (0)
#else
#define dbgprintf(_mask_, ...) \
do { if (dddvb_debug & _mask_) { fprintf(stderr, "[%5u] ", mtime(NULL)); \
do { if (dddvb_debug & _mask_) { fprintf(stderr, "[%5u] ",(unsigned int) mtime(NULL)); \
fprintf(stderr, __VA_ARGS__); } } while (0)
#endif