clang-format: no single-line case
[awesomized/libmemcached] / src / bin / memerror.cc
index c35684ad06bd5087094906b394a0b8631f38e27a..2580550f9d905066102460e8c483a50de8a7f8a4 100644 (file)
@@ -84,17 +84,23 @@ void options_parse(int argc, char *argv[]) {
     }
 
     switch (option_rv) {
-    case 0: break;
+    case 0:
+      break;
 
-    case OPT_VERSION: /* --version or -V */ opt_version = true; break;
+    case OPT_VERSION: /* --version or -V */
+      opt_version = true;
+      break;
 
-    case OPT_HELP: /* --help or -h */ opt_help = true; break;
+    case OPT_HELP: /* --help or -h */
+      opt_help = true;
+      break;
 
     case '?':
       /* getopt_long already printed an error message. */
       exit(EXIT_FAILURE);
 
-    default: exit(EXIT_FAILURE);
+    default:
+      exit(EXIT_FAILURE);
     }
   }