]> Git Repo - qemu.git/blobdiff - qemu-option.c
PPC: Enable 440EP CPU target
[qemu.git] / qemu-option.c
index 6b23c3123526ecec1acc8724819f3e59af3fd188..a303f87e1cc8ef481dd8a9f01b92a8e15d0e51af 100644 (file)
@@ -214,13 +214,17 @@ static int parse_option_size(const char *name, const char *value, uint64_t *ret)
         switch (*postfix) {
         case 'T':
             sizef *= 1024;
+            /* fall through */
         case 'G':
             sizef *= 1024;
+            /* fall through */
         case 'M':
             sizef *= 1024;
+            /* fall through */
         case 'K':
         case 'k':
             sizef *= 1024;
+            /* fall through */
         case 'b':
         case '\0':
             *ret = (uint64_t) sizef;
This page took 0.023177 seconds and 4 git commands to generate.