diff options
author | drh <drh@noemail.net> | 2019-07-13 16:15:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-07-13 16:15:23 +0000 |
commit | 8616cff6c8541e2837ccb7a2bc5792de5aba962f (patch) | |
tree | 670a894a9bf44ff72613b6bb293850c579e65eb3 /src/os_unix.c | |
parent | 76fd7be3a31d466202bc6ee9026d02150fcc12da (diff) | |
download | sqlite-8616cff6c8541e2837ccb7a2bc5792de5aba962f.tar.gz sqlite-8616cff6c8541e2837ccb7a2bc5792de5aba962f.zip |
Remove unreachable "break" statements to silence harmless compiler warnings
from ICC.
FossilOrigin-Name: 0d7287e1bfdd5a392bf2fb17699e7cfd0b08bf61fab6cbf4b4bb347b3c4b4610
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index f20763e5b..103df1d19 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -7603,7 +7603,7 @@ static int proxyFileControl(sqlite3_file *id, int op, void *pArg){ assert( 0 ); /* The call assures that only valid opcodes are sent */ } } - /*NOTREACHED*/ + /*NOTREACHED*/ assert(0); return SQLITE_ERROR; } |