1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-27 20:33:28 +02:00

mkenums: Fix typo

There's a stray '~' that needs to be removed.
This commit is contained in:
Emmanuele Bassi
2017-07-16 17:25:08 +01:00
parent 69389bdc34
commit 35db045729

@@ -477,7 +477,7 @@ def process_file(curfilename):
prod = prod.replace('\u0040ENUMNAME\u0040', enumlong)
prod = prod.replace('\u0040ENUMPREFIX\u0040', enumname_prefix)
if flags:
prod = ~prod.replace('\u0040type\u0040', 'flags')
prod = prod.replace('\u0040type\u0040', 'flags')
else:
prod = prod.replace('\u0040type\u0040', 'enum')
if flags: