daemon: Make sysroot_len be size_t instead of int.
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 19 May 2011 13:44:02 +0000 (14:44 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 19 May 2011 13:44:13 +0000 (14:44 +0100)
daemon/daemon.h
daemon/guestfsd.c

index 40a087d..77ee628 100644 (file)
@@ -36,7 +36,7 @@ extern int verbose;
 extern int autosync_umount;
 
 extern const char *sysroot;
-extern int sysroot_len;
+extern size_t sysroot_len;
 
 extern char *sysroot_path (const char *path);
 
index ac8750c..448f3b4 100644 (file)
@@ -103,7 +103,7 @@ winsock_init (void)
 
 /* Location to mount root device. */
 const char *sysroot = "/sysroot"; /* No trailing slash. */
-int sysroot_len = 8;
+size_t sysroot_len = 8;
 
 /* If set (the default), do 'umount-all' when performing autosync. */
 int autosync_umount = 1;