mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Patched to compile. Accidentally removed va_list declaration.
FossilOrigin-Name: 673d470c0c14106da05461d355a0c09e5f62851d
This commit is contained in:
@ -1341,6 +1341,7 @@ void Configlist_eat(struct config *cfp)
|
||||
*/
|
||||
|
||||
void ErrorMsg(const char *filename, int lineno, const char *format, ...){
|
||||
va_list ap;
|
||||
fprintf(stderr, "%s:%d: ", filename, lineno);
|
||||
va_start(ap, format);
|
||||
vfprintf(stderr,format,ap);
|
||||
|
Reference in New Issue
Block a user