[haiku-commits] haiku: hrev47501 - src/bin

  • From: stpere@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 15 Jul 2014 20:50:02 +0200 (CEST)

hrev47501 adds 1 changeset to branch 'master'
old head: fcd2bfb7738d21de61862eef3ddace2d5863311b
new head: 37b6c4337ca6df12a4902e7e5b3a541d2c89de61
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=37b6c43+%5Efcd2bfb

----------------------------------------------------------------------------

37b6c43: CID 1162772: Missing break (and typos fixed)

                                [ Philippe Saint-Pierre <stpere@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47501
Commit:      37b6c4337ca6df12a4902e7e5b3a541d2c89de61
URL:         http://cgit.haiku-os.org/haiku/commit/?id=37b6c43
Author:      Philippe Saint-Pierre <stpere@xxxxxxxxx>
Date:        Tue Jul 15 18:46:27 2014 UTC

----------------------------------------------------------------------------

1 file changed, 7 insertions(+), 6 deletions(-)
src/bin/listusb.cpp | 13 +++++++------

----------------------------------------------------------------------------

diff --git a/src/bin/listusb.cpp b/src/bin/listusb.cpp
index 0b15a96..57ec225 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;


Other related posts:

  • » [haiku-commits] haiku: hrev47501 - src/bin - stpere