]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Added default clauses to switch statements (just to make compiler happy).
authorc vw <dl1ycf@darc.de>
Tue, 23 Nov 2021 15:39:48 +0000 (16:39 +0100)
committerc vw <dl1ycf@darc.de>
Tue, 23 Nov 2021 15:39:48 +0000 (16:39 +0100)
actions.c
midi3.c
midi_menu.c

index 97afca51468c2abf5df6cdc73a82bdc70b0102e5..803de988bf53c0f72623f99280c8b6042a14620f 100644 (file)
--- a/actions.c
+++ b/actions.c
@@ -962,6 +962,9 @@ int process_action(void *data) {
          if(rit_increment<1) rit_increment=100;
          if(rit_increment>100) rit_increment=1;
          break;
+        default:
+          // ignore other types
+          break;
       }
       g_idle_add(ext_vfo_update,NULL);
       break;
diff --git a/midi3.c b/midi3.c
index b2e4ca46ba6f19ad3b59fa5f08ce6d68f4300022..50c0975c942b0492124cdfb4350f06c2e76e4234 100644 (file)
--- a/midi3.c
+++ b/midi3.c
@@ -79,5 +79,8 @@ void DoTheMidi(int action, enum ACTIONtype type, int val) {
         a->val=val;
         g_idle_add(process_action,a);
         break;
+      default:
+        // other types cannot happen for MIDI
+        break;
     }
 }
index 3b7e781cd87316608510ee9257178f0cca463b7a..011f0e2427b839011822858f704c1f2e0796bb0d 100644 (file)
@@ -514,6 +514,9 @@ static void add_store(int key,struct desc *cmd) {
     case MIDI_WHEEL:
       strcpy(str_type,"WHEEL");
       break;
+    default:
+      // other types cannot occur for MIDI
+      break;
   }
   strcpy(str_action,ActionTable[cmd->action].str);
   gtk_list_store_prepend(store,&iter);