A couple of minor warning cleanups.
 -Erik
diff --git a/mount.c b/mount.c
index 455e4a1..addeb09 100644
--- a/mount.c
+++ b/mount.c
@@ -203,7 +203,7 @@
 
 /* Seperate standard mount options from the nonstandard string options */
 static void
-parse_mount_options(char *options, unsigned long *flags, char *strflags)
+parse_mount_options(char *options, int *flags, char *strflags)
 {
 	while (options) {
 		int gotone = FALSE;
@@ -342,7 +342,7 @@
 	char string_flags_buf[1024] = "";
 	char *string_flags = string_flags_buf;
 	char *extra_opts = string_flags_buf;
-	unsigned long flags = 0;
+	int flags = 0;
 	char *filesystemType = "auto";
 	char *device = NULL;
 	char *directory = NULL;