entropy: Use POSIX types for format specifiers

This commit is contained in:
Aaron Marcher 2018-07-06 23:26:12 +02:00
parent c59b64e643
commit b65c058598
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
#if defined(__linux__) #if defined(__linux__)
#include <inttypes.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h>
#include "../util.h" #include "../util.h"
@ -11,11 +11,11 @@
uint64_t num; uint64_t num;
if (pscanf("/proc/sys/kernel/random/entropy_avail", if (pscanf("/proc/sys/kernel/random/entropy_avail",
"%d", &num) != 1) { "%" PRIu64, &num) != 1) {
return NULL; return NULL;
} }
return bprintf("%d", num); return bprintf("%" PRIu64, num);
} }
#elif defined(__OpenBSD__) #elif defined(__OpenBSD__)
const char * const char *