bug-grep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/2] build: avoid warnings on cygwin


From: Eric Blake
Subject: [PATCH 2/2] build: avoid warnings on cygwin
Date: Mon, 29 Mar 2010 11:45:44 -0600

* lib/savedir.c (isdir): Avoid shadowing a declaration.
* src/main.c (get_nondigit_option): Cast away const to avoid
compiler warning.
---

Are these trivial enough to include before cutting the 2.6.2 release?

 lib/savedir.c |    2 +-
 src/main.c    |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/savedir.c b/lib/savedir.c
index 53f8c7b..6b2a848 100644
--- a/lib/savedir.c
+++ b/lib/savedir.c
@@ -40,7 +40,7 @@
 static char *path;
 static size_t pathlen;

-extern int isdir (const char *path);
+extern int isdir (const char *name);

 static int
 isdir1 (const char *dir, const char *file)
diff --git a/src/main.c b/src/main.c
index fe4e101..3fdcfb9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1629,7 +1629,8 @@ get_nondigit_option (int argc, char *const *argv, int 
*default_context)

   was_digit = 0;
   this_digit_optind = optind;
-  while (opt = getopt_long (argc, argv, short_options, long_options, NULL),
+  while (opt = getopt_long (argc, (char **) argv, short_options, long_options,
+                            NULL),
         '0' <= opt && opt <= '9')
     {
       if (prev_digit_optind != this_digit_optind || !was_digit)
-- 
1.6.6.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]