From b6839e1bfd10d28046f75f9f9c25f8af2665eda3 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Mon, 25 Jan 2010 23:07:24 +0100 Subject: libreplace: fix unused varibale warning on IRIX --- lib/replace/strptime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/replace/strptime.c b/lib/replace/strptime.c index 0e40f7561a..568823f2f8 100644 --- a/lib/replace/strptime.c +++ b/lib/replace/strptime.c @@ -251,7 +251,6 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) enum locale_status *decided; int era_cnt; { - const char *rp_backup; int cnt; size_t val; int have_I, is_pm; @@ -261,6 +260,7 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) int have_yday; int have_mon, have_mday; #ifdef _NL_CURRENT + const char *rp_backup; size_t num_eras; #endif struct era_entry *era; @@ -297,10 +297,10 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) #ifndef _NL_CURRENT /* We need this for handling the `E' modifier. */ start_over: -#endif /* Make back up of current processing pointer. */ rp_backup = rp; +#endif switch (*fmt++) { -- cgit