]> granicus.if.org Git - graphviz/commitdiff
squash a -Wswitch-default warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 8 Apr 2021 02:51:54 +0000 (19:51 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Apr 2021 21:02:40 +0000 (14:02 -0700)
lib/ortho/ortho.c

index 4089e6fb9bb7beda0ff465faec60afc9fea49a0c..c42cf83e283da7343fe45fd013aa22d5f8968526 100644 (file)
@@ -22,6 +22,7 @@
 #include "config.h"
 
 #define DEBUG
+#include <assert.h>
 #include <stdbool.h>
 #include <stddef.h>
 #include <setjmp.h>
@@ -522,7 +523,8 @@ static char* bendToStr (bend b)
   case B_DOWN :
     s = "B_DOWN";
     break;
-  case B_RIGHT :
+  default:
+    assert(b == B_RIGHT);
     s = "B_RIGHT";
     break;
   }