Consistently write null pointer constants as NULL instead of 0.
[sliver-openvswitch.git] / ovsdb / table.c
index 2f69350..2ea73bf 100644 (file)
@@ -157,7 +157,7 @@ ovsdb_table_schema_from_json(const struct json *json, const char *name,
         add_column(ts, column);
     }
     *tsp = ts;
-    return 0;
+    return NULL;
 }
 
 /* Returns table schema 'ts' serialized into JSON.