1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Patches to support linux on embedded platforms. (CVS 3049)

FossilOrigin-Name: a088eb6d6eda70d89add1e5d95be5efda6c0de67
This commit is contained in:
drh
2006-01-31 20:49:13 +00:00
parent 0850b5374c
commit 15b9a15a8d
5 changed files with 16 additions and 14 deletions

View File

@@ -16,7 +16,7 @@
** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
** All other code has file scope.
**
** $Id: date.c,v 1.53 2006/01/24 12:09:19 danielk1977 Exp $
** $Id: date.c,v 1.54 2006/01/31 20:49:13 drh Exp $
**
** NOTES:
**
@@ -117,8 +117,8 @@ static int getDigits(const char *zDate, ...){
zDate++;
cnt++;
}while( nextC );
va_end(ap);
end_getDigits:
va_end(ap);
return cnt;
}