Commit 84c9c8b2 authored by Marko Mäkelä's avatar Marko Mäkelä

Silence some -Wimplicit-fallthrough by proper spelling

parent 20fab71b
...@@ -1757,7 +1757,7 @@ Query_cache::send_result_to_client(THD *thd, char *org_sql, uint query_length) ...@@ -1757,7 +1757,7 @@ Query_cache::send_result_to_client(THD *thd, char *org_sql, uint query_length)
sql++; sql++;
continue; continue;
} }
/* fall trough */ /* fall through */
default: default:
break; break;
} }
......
...@@ -747,11 +747,11 @@ void _ma_kpointer(register MARIA_HA *info, register uchar *buff, my_off_t pos) ...@@ -747,11 +747,11 @@ void _ma_kpointer(register MARIA_HA *info, register uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break; case 5: mi_int5store(buff,pos); break;
#else #else
case 7: *buff++=0; case 7: *buff++=0;
/* fall trough */ /* fall through */
case 6: *buff++=0; case 6: *buff++=0;
/* fall trough */ /* fall through */
case 5: *buff++=0; case 5: *buff++=0;
/* fall trough */ /* fall through */
#endif #endif
case 4: mi_int4store(buff,pos); break; case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break; case 3: mi_int3store(buff,pos); break;
...@@ -883,13 +883,13 @@ void _ma_dpointer(MARIA_SHARE *share, uchar *buff, my_off_t pos) ...@@ -883,13 +883,13 @@ void _ma_dpointer(MARIA_SHARE *share, uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break; case 5: mi_int5store(buff,pos); break;
#else #else
case 8: *buff++=0; case 8: *buff++=0;
/* fall trough */ /* fall through */
case 7: *buff++=0; case 7: *buff++=0;
/* fall trough */ /* fall through */
case 6: *buff++=0; case 6: *buff++=0;
/* fall trough */ /* fall through */
case 5: *buff++=0; case 5: *buff++=0;
/* fall trough */ /* fall through */
#endif #endif
case 4: mi_int4store(buff,pos); break; case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break; case 3: mi_int3store(buff,pos); break;
......
...@@ -608,11 +608,11 @@ void _mi_kpointer(register MI_INFO *info, register uchar *buff, my_off_t pos) ...@@ -608,11 +608,11 @@ void _mi_kpointer(register MI_INFO *info, register uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break; case 5: mi_int5store(buff,pos); break;
#else #else
case 7: *buff++=0; case 7: *buff++=0;
/* fall trough */ /* fall through */
case 6: *buff++=0; case 6: *buff++=0;
/* fall trough */ /* fall through */
case 5: *buff++=0; case 5: *buff++=0;
/* fall trough */ /* fall through */
#endif #endif
case 4: mi_int4store(buff,pos); break; case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break; case 3: mi_int3store(buff,pos); break;
...@@ -729,13 +729,13 @@ void _mi_dpointer(MI_INFO *info, uchar *buff, my_off_t pos) ...@@ -729,13 +729,13 @@ void _mi_dpointer(MI_INFO *info, uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break; case 5: mi_int5store(buff,pos); break;
#else #else
case 8: *buff++=0; case 8: *buff++=0;
/* fall trough */ /* fall through */
case 7: *buff++=0; case 7: *buff++=0;
/* fall trough */ /* fall through */
case 6: *buff++=0; case 6: *buff++=0;
/* fall trough */ /* fall through */
case 5: *buff++=0; case 5: *buff++=0;
/* fall trough */ /* fall through */
#endif #endif
case 4: mi_int4store(buff,pos); break; case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break; case 3: mi_int3store(buff,pos); break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment