diff options
Diffstat (limited to 'libmformat')
-rw-r--r-- | libmformat/libmformat/format.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmformat/libmformat/format.cxx b/libmformat/libmformat/format.cxx index 181eb86..c109c2a 100644 --- a/libmformat/libmformat/format.cxx +++ b/libmformat/libmformat/format.cxx @@ -20,9 +20,10 @@ namespace format switch (v) { case volume::quiet: return tolower (c); - case volume::normal: return c; + case volume::normal: break; case volume::loud: return toupper (c); } + return c; }); return r += ", " + n + '!'; |