diff options
author | Noah Watkins <noahwatkins@gmail.com> | 2013-07-20 18:41:40 -0700 |
---|---|---|
committer | Noah Watkins <noahwatkins@gmail.com> | 2013-09-17 10:23:44 -0700 |
commit | 99514537caf4704084d33ca151a5293577f58bd9 (patch) | |
tree | 913f27100756d4253334c3e661fb5a4cc89e7d97 | |
parent | 94600ba6d722017f964c3455a3f4e96ab109fb46 (diff) | |
download | ceph-99514537caf4704084d33ca151a5293577f58bd9.tar.gz |
rbd_fuse: include <limits.h> for PATH_MAX
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
-rw-r--r-- | src/rbd_fuse/rbd-fuse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rbd_fuse/rbd-fuse.c b/src/rbd_fuse/rbd-fuse.c index 2ae8c57e07e..677876766fd 100644 --- a/src/rbd_fuse/rbd-fuse.c +++ b/src/rbd_fuse/rbd-fuse.c @@ -17,6 +17,7 @@ #include <sys/types.h> #include <unistd.h> #include <getopt.h> +#include <limits.h> #include "include/rbd/librbd.h" |