util: New ovs_retval_to_string() function.
[openvswitch] / ovsdb / ovsdb-idlc.in
index c6870cc3aedb3e1675e7cf718c611d47d7fb526c..4183089950dc57290d748b988eda3e66d0b327b4 100755 (executable)
@@ -20,9 +20,7 @@ def annotateSchema(schemaFile, annotationFile):
     ovs.json.to_stream(schemaJson, sys.stdout)
 
 def constify(cType, const):
-    if (const
-        and cType.endswith('*') and not cType.endswith('**')
-        and (cType.startswith('struct uuid') or cType.startswith('char'))):
+    if (const and cType.endswith('*') and not cType.endswith('**')):
         return 'const %s' % cType
     else:
         return cType