1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

oops, has_plus should be false by default

This commit is contained in:
Kenichi Ishigaki 2012-04-28 01:37:55 +00:00
parent e49ab2c08b
commit e7a213cb58

View file

@ -175,7 +175,7 @@ sqlite_is_number(pTHX_ const char *v, int sql_type)
int neg;
int digit = 0;
int precision = 0;
bool has_plus = TRUE;
bool has_plus = FALSE;
bool maybe_int = TRUE;
char format[10];