ovsdb: Add default case to ovsdb_mutation_set_execute().
[sliver-openvswitch.git] / ovsdb / mutation.c
index bd6986d..72d7d0c 100644 (file)
@@ -379,6 +379,9 @@ ovsdb_mutation_set_execute(struct ovsdb_row *row,
             ovsdb_datum_subtract(dst, dst_type, arg, arg_type);
             error = ovsdb_mutation_check_count(dst, dst_type);
             break;
+
+        default:
+            NOT_REACHED();
         }
         if (error) {
             return error;