Skip to content

Commit

Permalink
Silence compiler warnings about unused values.
Browse files Browse the repository at this point in the history
Per gripe from Kevin Grittner.
  • Loading branch information
adunstan committed Mar 22, 2013
1 parent 13fe298 commit e4a05c7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions contrib/hstore/hstore_io.c
Expand Up @@ -1305,11 +1305,13 @@ hstore_to_json_loose(PG_FUNCTION_ARGS)
{
/*
* might be a number. See if we can input it as a numeric
* value
* value. Ignore any actual parsed value.
*/
char *endptr = "junk";
long lval;

(void) strtol(src->data, &endptr, 10);
lval = strtol(src->data, &endptr, 10);
(void) lval;
if (*endptr == '\0')
{
/*
Expand All @@ -1321,7 +1323,10 @@ hstore_to_json_loose(PG_FUNCTION_ARGS)
else
{
/* not an int - try a double */
(void) strtod(src->data, &endptr);
double dval;

dval = strtod(src->data, &endptr);
(void) dval;
if (*endptr == '\0')
is_number = true;
}
Expand Down

0 comments on commit e4a05c7

Please sign in to comment.