summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2012-01-11 15:49:20 -0700
committerEric Blake <eblake@redhat.com>2012-01-11 15:49:54 -0700
commit8bb68d37569145a772000ce8db87397529f5b3cf (patch)
tree363d425b48e2e2996249bbee74a2ba9a5a2efa18 /lib
parente4196e8dce983586517ee1f25efbbf77ee14c439 (diff)
downloadgnulib-8bb68d37569145a772000ce8db87397529f5b3cf.tar.gz
strptime: silence gcc warnings
Cross-compiling to mingw raised a couple of gcc warnings. * lib/strptime.c (__strptime_internal) [!_NL_CURRENT], [!_LIBC && !HAVE_TM_GMTOFF]: Avoid unused variables. Reported by Daniel P. Berrange. Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/strptime.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/strptime.c b/lib/strptime.c
index a09c80d26b..0d4c3a4eb9 100644
--- a/lib/strptime.c
+++ b/lib/strptime.c
@@ -240,7 +240,6 @@ __strptime_internal (rp, fmt, tm, decided, era_cnt LOCALE_PARAM)
struct locale_data *const current = locale->__locales[LC_TIME];
#endif
- const char *rp_backup;
int cnt;
size_t val;
int have_I, is_pm;
@@ -253,14 +252,14 @@ __strptime_internal (rp, fmt, tm, decided, era_cnt LOCALE_PARAM)
int week_no;
#ifdef _NL_CURRENT
size_t num_eras;
+ struct era_entry *era = NULL;
+ const char *rp_backup;
#endif
- struct era_entry *era;
have_I = is_pm = 0;
century = -1;
want_century = 0;
want_era = 0;
- era = NULL;
week_no = 0;
have_wday = want_xday = have_yday = have_mon = have_mday = have_uweek = 0;
@@ -290,10 +289,10 @@ __strptime_internal (rp, fmt, tm, decided, era_cnt LOCALE_PARAM)
#ifndef _NL_CURRENT
/* We need this for handling the 'E' modifier. */
start_over:
-#endif
-
+#else
/* Make back up of current processing pointer. */
rp_backup = rp;
+#endif
switch (*fmt++)
{
@@ -675,7 +674,9 @@ __strptime_internal (rp, fmt, tm, decided, era_cnt LOCALE_PARAM)
specify hours. If fours digits are used, minutes are
also specified. */
{
+#if defined _LIBC || HAVE_TM_GMTOFF
bool neg;
+#endif
int n;
val = 0;
@@ -683,7 +684,9 @@ __strptime_internal (rp, fmt, tm, decided, era_cnt LOCALE_PARAM)
++rp;
if (*rp != '+' && *rp != '-')
return NULL;
+#if defined _LIBC || HAVE_TM_GMTOFF
neg = *rp++ == '-';
+#endif
n = 0;
while (n < 4 && *rp >= '0' && *rp <= '9')
{