gstrfuncs.c: Fix variable declaration

Declare variables at top of block to stop C89 compilers from complaining.
This commit is contained in:
Chun-wei Fan 2011-11-12 10:38:31 +08:00
parent 0f01bef4b4
commit faebf0f653

View File

@ -683,13 +683,6 @@ gdouble
g_ascii_strtod (const gchar *nptr,
gchar **endptr)
{
g_return_val_if_fail (nptr != NULL, 0);
#ifdef HAVE_STRTOD_L
errno = 0;
return strtod_l (nptr, endptr, get_C_locale ());
#else
gchar *fail_pos;
gdouble val;
struct lconv *locale_data;
@ -699,6 +692,14 @@ g_ascii_strtod (const gchar *nptr,
const char *end = NULL; /* Silence gcc */
int strtod_errno;
g_return_val_if_fail (nptr != NULL, 0);
#ifdef HAVE_STRTOD_L
errno = 0;
return strtod_l (nptr, endptr, get_C_locale ());
#else
fail_pos = NULL;
locale_data = localeconv ();