We should really collapse our 3 cvtnum variants,
but for now at least shut up Coverity about this
intentional case fallthrough.
Addresses-Coverity-ID:
1361553
Addresses-Coverity-ID:
1361554
Addresses-Coverity-ID:
1361555
Addresses-Coverity-ID:
1361556
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
switch (c) {
case 'e':
i *= 1024LL;
+ /* fall through */
case 'p':
i *= 1024LL;
+ /* fall through */
case 't':
i *= 1024LL;
+ /* fall through */
case 'g':
i *= 1024LL;
+ /* fall through */
case 'm':
i *= 1024LL;
+ /* fall through */
case 'k':
return i * 1024LL;
default: