From 37b6c4337ca6df12a4902e7e5b3a541d2c89de61 Mon Sep 17 00:00:00 2001 From: Philippe Saint-Pierre Date: Tue, 15 Jul 2014 14:46:27 -0400 Subject: [PATCH] CID 1162772: Missing break (and typos fixed) --- src/bin/listusb.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/bin/listusb.cpp b/src/bin/listusb.cpp index 0b15a96d54..57ec225dfc 100644 --- a/src/bin/listusb.cpp +++ b/src/bin/listusb.cpp @@ -593,14 +593,14 @@ DumpMPEGFeatures(uint8 features) printf(" Not supported\n"); break; case 1: - printf(" Supported, not scaleable\n"); + printf(" Supported, not scalable\n"); break; case 2: - printf(" Scaleable, common boost, " + printf(" Scalable, common boost, " "cut scaling value\n"); break; case 3: - printf(" Scaleable, separate boost, " + printf(" Scalable, separate boost, " "cut scaling value\n"); default: break; @@ -648,13 +648,14 @@ DumpAC_3Features(uint8 features) printf(" Not supported\n"); break; case 1: - printf(" Supported, not scaleable\n"); + printf(" Supported, not scalable\n"); break; case 2: - printf(" Scaleable, common boost, " + printf(" Scalable, common boost, " "cut scaling value\n"); + break; case 3: - printf(" Scaleable, separate boost, " + printf(" Scalable, separate boost, " "cut scaling value\n"); default: break;