Displaying 1 result from an estimated 1 matches for "25b83d2".
2012 Nov 15
0
[PATCH] btrfs-progs: fix 32bit int/pointer cast warnings
...olve’:
cmds-inspect.c:171:15: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
Signed-off-by: Zach Brown <zab@redhat.com>
---
cmds-inspect.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/cmds-inspect.c b/cmds-inspect.c
index edabff5..25b83d2 100644
--- a/cmds-inspect.c
+++ b/cmds-inspect.c
@@ -17,6 +17,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <stdint.h>
#include <sys/ioctl.h>
#include <errno.h>
@@ -44,7 +45,7 @@ static int __ino_to_path_fd(u64 inum, int fd, int...