]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
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 ad63e151045c12854712c2d3620af65175650c5d..826a6998fa525a3853c4f906e8bdaec73a720d45 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 b7ef5f497dd279ad4c5102a1f98229625fa91011..2b976a5c5082d031e0f729d61e47978cec21fa3d 100644 (file)
@@ -19,7 +19,7 @@
  */
 
 #include <endian.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>