mirror of
https://github.com/sqlite/sqlite.git
synced 2025-09-11 08:30:57 +03:00
Working better with Win95.
Continued work on the new db.c backend. (CVS 1714) FossilOrigin-Name: df0ff304855bd18c7a3517c500e891b6d006be6a
This commit is contained in:
@@ -46,7 +46,6 @@
|
||||
** + All functions are fully reentrant.
|
||||
**
|
||||
*/
|
||||
#include <ctype.h>
|
||||
#include "sqliteInt.h"
|
||||
|
||||
/*
|
||||
@@ -262,7 +261,7 @@ static int vxprintf(
|
||||
}
|
||||
c = *++fmt;
|
||||
}else{
|
||||
while( isdigit(c) ){
|
||||
while( c>='0' && c<='9' ){
|
||||
width = width*10 + c - '0';
|
||||
c = *++fmt;
|
||||
}
|
||||
@@ -282,7 +281,7 @@ static int vxprintf(
|
||||
#endif
|
||||
c = *++fmt;
|
||||
}else{
|
||||
while( isdigit(c) ){
|
||||
while( c>='0' && c<='9' ){
|
||||
precision = precision*10 + c - '0';
|
||||
c = *++fmt;
|
||||
}
|
||||
|
Reference in New Issue
Block a user