소스 검색

entropy: Use POSIX types for format specifiers

Aaron Marcher 7 년 전
부모
커밋
b65c058598
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      components/entropy.c

+ 3 - 3
components/entropy.c

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