cppcheck: fix warnings
[awesomized/libmemcached] / clients / memaslap.c
index 02907945459729a1caf05240741a95b514258731..dc4113502398322b803f3611a6985acc590e3318 100644 (file)
@@ -349,15 +349,15 @@ static int64_t ms_parse_time()
   case 'd':
   case 'D':
     ret*= 24;
-
+    /* fall through */
   case 'h':
   case 'H':
     ret*= 60;
-
+    /* fall through */
   case 'm':
   case 'M':
     ret*= 60;
-
+    /* fall through */
   case 's':
   case 'S':
     break;