summaryrefslogtreecommitdiff
path: root/sbin/swapctl/swaplist.c
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-08-10 05:00:26 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-08-10 05:00:26 +0000
commit9b1b01508f92abcca819e0763b868027fcb5f02a (patch)
tree02a49d0bacc1bd6aa34d42de6604c8ecf800a7e7 /sbin/swapctl/swaplist.c
parent53777cd97fc42a1213a1335210af49586b5a044c (diff)
Only need <stdint.h> and not all of <inttypes.h> here
Diffstat (limited to 'sbin/swapctl/swaplist.c')
-rw-r--r--sbin/swapctl/swaplist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/swapctl/swaplist.c b/sbin/swapctl/swaplist.c
index 4aac6cb5011..83280833268 100644
--- a/sbin/swapctl/swaplist.c
+++ b/sbin/swapctl/swaplist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: swaplist.c,v 1.8 2011/06/24 21:02:09 jasper Exp $ */
+/* $OpenBSD: swaplist.c,v 1.9 2014/08/10 05:00:25 guenther Exp $ */
/* $NetBSD: swaplist.c,v 1.8 1998/10/08 10:00:31 mrg Exp $ */
/*
@@ -33,7 +33,7 @@
#include <sys/swap.h>
#include <err.h>
-#include <inttypes.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>