Prefer inttypes.h over stdint.h
authorLucas De Marchi <lucas.demarchi@intel.com>
Fri, 3 Oct 2014 05:03:55 +0000 (02:03 -0300)
committerLucas De Marchi <lucas.demarchi@intel.com>
Fri, 3 Oct 2014 05:03:55 +0000 (02:03 -0300)
libkmod/libkmod-index.h
libkmod/libkmod-signature.c

index ad63e15..826a699 100644 (file)
@@ -20,7 +20,7 @@
 
 #pragma once
 
-#include <stdint.h>
+#include <inttypes.h>
 
 /* Integers are stored as 32 bit unsigned in "network" order, i.e. MSB first.
    All files start with a magic number.
index b7ef5f4..2b976a5 100644 (file)
@@ -19,7 +19,7 @@
  */
 
 #include <endian.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>