diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test_multiplex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_multiplex.c b/src/test_multiplex.c index f87f6a9be..62b4902a8 100644 --- a/src/test_multiplex.c +++ b/src/test_multiplex.c @@ -329,7 +329,7 @@ static sqlite3_file *multiplexSubOpen( ** database may therefore not grow to larger than 400 chunks. Attempting ** to open chunk 401 indicates the database is full. */ if( iChunk>=SQLITE_MULTIPLEX_JOURNAL_8_3_OFFSET ){ - sqlite3_log(SQLITE_FULL, "multiplexed chunk overflow: %s", zName); + sqlite3_log(SQLITE_FULL, "multiplexed chunk overflow: %s", pGroup->zName); *rc = SQLITE_FULL; return 0; } |