diff options
author | Matthew Booth <mbooth@redhat.com> | 2012-04-04 14:01:22 +0100 |
---|---|---|
committer | Matthew Booth <mbooth@redhat.com> | 2012-04-04 14:26:51 +0100 |
commit | d9f77f214bb8448139792c5a871dca2dfe9845db (patch) | |
tree | 717e86e2b1010f385c38a69107d18033c8dcfa8a | |
parent | 4b86f1ad03f617e60f68be6153ca75baaaedf754 (diff) | |
download | libguestfs-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.c | 1 |
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> |