diff options
author | Federico Simoncelli <fsimonce@redhat.com> | 2012-03-20 13:54:35 +0000 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-26 13:21:46 -0500 |
commit | c9da228b49792354af6bb6735bc48bc1c156bc0d (patch) | |
tree | 3fa5dfba4963b7217508c007e57a3e3611e1a323 /scripts/qapi-types.py | |
parent | cb1977d308f6e1d6bf398d42e6148187b82456c1 (diff) |
qapi: add c_fun to escape function names
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'scripts/qapi-types.py')
-rw-r--r-- | scripts/qapi-types.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 727fb77266..4a734f58d5 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -100,7 +100,7 @@ typedef enum %(name)s %(abbrev)s_%(value)s = %(i)d, ''', abbrev=de_camel_case(name).upper(), - value=c_var(value).upper(), + value=c_fun(value).upper(), i=i) i += 1 @@ -126,7 +126,7 @@ struct %(name)s %(c_type)s %(c_name)s; ''', c_type=c_type(typeinfo[key]), - c_name=c_var(key)) + c_name=c_fun(key)) ret += mcgen(''' }; |