mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 20:18:09 +00:00
fix compilation error
This commit is contained in:
parent
8a25d2f703
commit
9ae188f4c7
2 changed files with 2 additions and 1 deletions
|
|
@ -91,7 +91,6 @@ liblinphone_la_SOURCES=\
|
|||
sal.c \
|
||||
siplogin.c \
|
||||
sipsetup.c \
|
||||
sqlite3_bctbx_vfs.c \
|
||||
xml2lpc.c \
|
||||
xml.c \
|
||||
xmlrpc.c \
|
||||
|
|
|
|||
|
|
@ -157,7 +157,9 @@ static int sqlite3bctbx_DeviceCharacteristics(sqlite3_file *p){
|
|||
* @return SQLITE_OK on success, SALITE_NOTFOUND otherwise.
|
||||
*/
|
||||
static int sqlite3bctbx_FileControl(sqlite3_file *p, int op, void *pArg){
|
||||
#ifdef SQLITE_FCNTL_MMAP_SIZE
|
||||
if (op == SQLITE_FCNTL_MMAP_SIZE) return SQLITE_OK;
|
||||
#endif
|
||||
return SQLITE_NOTFOUND;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue