From 0b0404bf84432f0ee74840d674b93bacee7eee68 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 9 Jan 2012 18:29:51 +0100 Subject: Add 'fall through' comments to case statements without break These comments are used by static code analysis tools and in code reviews to avoid false warnings because of missing break statements. The case statements handled here were reported by coverity. Reviewed-by: Peter Maydell Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- qemu-option.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qemu-option.c') diff --git a/qemu-option.c b/qemu-option.c index 6b23c31235..a303f87e1c 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -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; -- cgit v1.2.3