summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/add.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-01-06 23:09:19 +0100
committerDan McGee <dan@archlinux.org>2012-01-07 18:28:37 +0100
commitb7ecff160ee541904e7b75c9ba88a455c9502409 (patch)
tree843c0231499abdbfb51a5530b72146f641950fab /lib/libalpm/add.c
parentd59324c8fff0a91930bf226d013273691f0580e6 (diff)
downloadpacman-b7ecff160ee541904e7b75c9ba88a455c9502409.tar.gz
pacman-b7ecff160ee541904e7b75c9ba88a455c9502409.tar.xz
Clean up <inttypes.h> header inclusions
In both cases we can go with the slightly leaner <stdint.h> header include since we aren't using the print macros. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/add.c')
-rw-r--r--lib/libalpm/add.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index 014990d2..e81d96fa 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -26,8 +26,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
-#include <inttypes.h> /* int64_t */
-#include <stdint.h> /* intmax_t */
+#include <stdint.h> /* int64_t */
/* libarchive */
#include <archive.h>