diff options
author | drh <drh@noemail.net> | 2011-05-31 16:50:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-05-31 16:50:23 +0000 |
commit | ed9624187d89a96e591353a7bdee53b292e6f849 (patch) | |
tree | 7518f936ec1401429993cf872a491208b605ecc0 /src | |
parent | a80a141247a233e71d0adc29244096eebf3204f0 (diff) | |
download | sqlite-ed9624187d89a96e591353a7bdee53b292e6f849.tar.gz sqlite-ed9624187d89a96e591353a7bdee53b292e6f849.zip |
Fix a problem in the sqlite3TestErrorName() function (used only for testing)
that appears to have originated from a bad merge.
FossilOrigin-Name: a0ae314c7f41d0146a9ee1adc576cd977219a378
Diffstat (limited to 'src')
-rw-r--r-- | src/test1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test1.c b/src/test1.c index 50575afbb..7d31c6d02 100644 --- a/src/test1.c +++ b/src/test1.c @@ -164,7 +164,6 @@ const char *sqlite3TestErrorName(int rc){ zName = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; case SQLITE_IOERR_LOCK: zName = "SQLITE_IOERR_LOCK"; break; case SQLITE_CORRUPT_VTAB: zName = "SQLITE_CORRUPT_VTAB"; break; - zName = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; default: zName = "SQLITE_Unknown"; break; } return zName; |