1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Made detectSchemaProblem function and aSchemaTable array static. Ticket [6f8b0c5855].

FossilOrigin-Name: c6f22f3e38018246a2add1a509aa6c5c55b7e0be
This commit is contained in:
shane
2009-10-21 13:53:58 +00:00
parent d2bed1c8ca
commit 16f954cf80
3 changed files with 9 additions and 9 deletions

View File

@@ -274,7 +274,7 @@ typedef struct GenfkeyCb GenfkeyCb;
")"
typedef struct SchemaTable SchemaTable;
struct SchemaTable {
static struct SchemaTable {
const char *zName;
const char *zObject;
const char *zPragma;
@@ -731,7 +731,7 @@ static int invokeCallback(void *p, int nArg, char **azArg, char **azCol){
return pCb->xData(pCb->pCtx, pCb->eType, azArg[0]);
}
int detectSchemaProblem(
static int detectSchemaProblem(
sqlite3 *db, /* Database connection */
const char *zMessage, /* English language error message */
const char *zSql, /* SQL statement to run */