summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Booth <mbooth@redhat.com>2012-04-04 14:01:22 +0100
committerMatthew Booth <mbooth@redhat.com>2012-04-04 14:26:51 +0100
commitd9f77f214bb8448139792c5a871dca2dfe9845db (patch)
tree717e86e2b1010f385c38a69107d18033c8dcfa8a
parent4b86f1ad03f617e60f68be6153ca75baaaedf754 (diff)
downloadlibguestfs-d9f77f214bb8448139792c5a871dca2dfe9845db.tar.gz
libguestfs-d9f77f214bb8448139792c5a871dca2dfe9845db.tar.xz
libguestfs-d9f77f214bb8448139792c5a871dca2dfe9845db.zip
fuse: Add missing #include to guestmount.c
Fix compilation failure on F17
-rw-r--r--fuse/guestmount.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fuse/guestmount.c b/fuse/guestmount.c
index 7c5e0af5..379346f9 100644
--- a/fuse/guestmount.c
+++ b/fuse/guestmount.c
@@ -28,6 +28,7 @@
#include <unistd.h>
#include <getopt.h>
#include <signal.h>
+#include <locale.h>
/* We're still using some of FUSE to handle command line options. */
#include <fuse.h>