canutils/candump/candump.c: Fix printf format warnings
This commit is contained in:
parent
d671dcc40c
commit
d50feaa2ef
@ -45,6 +45,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <inttypes.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@ -689,12 +690,12 @@ int main(int argc, char **argv)
|
|||||||
__u32 frames = dropcnt[i] - last_dropcnt[i];
|
__u32 frames = dropcnt[i] - last_dropcnt[i];
|
||||||
|
|
||||||
if (silent != SILENT_ON)
|
if (silent != SILENT_ON)
|
||||||
printf("DROPCOUNT: dropped %d CAN frame%s on '%s' socket (total drops %d)\n",
|
printf("DROPCOUNT: dropped %" PRId32 " CAN frame%s on '%s' socket (total drops %" PRId32 ")\n",
|
||||||
frames, (frames > 1)?"s":"", devname[idx], dropcnt[i]);
|
(uint32_t)frames, (frames > 1)?"s":"", devname[idx], (uint32_t)dropcnt[i]);
|
||||||
|
|
||||||
if (log)
|
if (log)
|
||||||
fprintf(logfile, "DROPCOUNT: dropped %d CAN frame%s on '%s' socket (total drops %d)\n",
|
fprintf(logfile, "DROPCOUNT: dropped %" PRId32 " CAN frame%s on '%s' socket (total drops %" PRId32 ")\n",
|
||||||
frames, (frames > 1)?"s":"", devname[idx], dropcnt[i]);
|
(uint32_t)frames, (frames > 1)?"s":"", devname[idx], (uint32_t)dropcnt[i]);
|
||||||
|
|
||||||
last_dropcnt[i] = dropcnt[i];
|
last_dropcnt[i] = dropcnt[i];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user