diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-14 06:19:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-14 06:19:41 +0000 |
commit | e7413a9cde8da7a54349a0641d0b1e7cbc0e290a (patch) | |
tree | de65d104a5ec0715d77663f9a4478d9e6ec20b58 /mount.c | |
parent | d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb (diff) | |
download | busybox-w32-e7413a9cde8da7a54349a0641d0b1e7cbc0e290a.tar.gz busybox-w32-e7413a9cde8da7a54349a0641d0b1e7cbc0e290a.tar.bz2 busybox-w32-e7413a9cde8da7a54349a0641d0b1e7cbc0e290a.zip |
A couple of minor warning cleanups.
-Erik
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -203,7 +203,7 @@ do_mount(char *specialfile, char *dir, char *filesystemtype, | |||
203 | 203 | ||
204 | /* Seperate standard mount options from the nonstandard string options */ | 204 | /* Seperate standard mount options from the nonstandard string options */ |
205 | static void | 205 | static void |
206 | parse_mount_options(char *options, unsigned long *flags, char *strflags) | 206 | parse_mount_options(char *options, int *flags, char *strflags) |
207 | { | 207 | { |
208 | while (options) { | 208 | while (options) { |
209 | int gotone = FALSE; | 209 | int gotone = FALSE; |
@@ -342,7 +342,7 @@ extern int mount_main(int argc, char **argv) | |||
342 | char string_flags_buf[1024] = ""; | 342 | char string_flags_buf[1024] = ""; |
343 | char *string_flags = string_flags_buf; | 343 | char *string_flags = string_flags_buf; |
344 | char *extra_opts = string_flags_buf; | 344 | char *extra_opts = string_flags_buf; |
345 | unsigned long flags = 0; | 345 | int flags = 0; |
346 | char *filesystemType = "auto"; | 346 | char *filesystemType = "auto"; |
347 | char *device = NULL; | 347 | char *device = NULL; |
348 | char *directory = NULL; | 348 | char *directory = NULL; |