aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ctime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ctime.c b/src/ctime.c
index cbb6aea8a..5644e5314 100644
--- a/src/ctime.c
+++ b/src/ctime.c
@@ -30,7 +30,7 @@
** only a handful of compile-time options, so most times this array is usually
** rather short and uses little memory space.
*/
-static const char * const azCompileOpt[] = {
+static const char * const sqlite3azCompileOpt[] = {
/*
** BEGIN CODE GENERATED BY tool/mkctime.tcl
@@ -728,8 +728,8 @@ static const char * const azCompileOpt[] = {
};
const char **sqlite3CompileOptions(int *pnOpt){
- *pnOpt = sizeof(azCompileOpt) / sizeof(azCompileOpt[0]);
- return (const char**)azCompileOpt;
+ *pnOpt = sizeof(sqlite3azCompileOpt) / sizeof(sqlite3azCompileOpt[0]);
+ return (const char**)sqlite3azCompileOpt;
}
#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */