qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 35/93] qapi: Add "errno" to the list of polluted word


From: Kevin Wolf
Subject: [Qemu-devel] [PULL 35/93] qapi: Add "errno" to the list of polluted words
Date: Fri, 24 Jan 2014 18:21:18 +0100

From: Max Reitz <address@hidden>

Using "errno" directly as an identifier results in various syntax
errors; therefore it should be added to the list of polluted words.

Signed-off-by: Max Reitz <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
 scripts/qapi.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/qapi.py b/scripts/qapi.py
index 750e9fb..9b3de4c 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -247,7 +247,7 @@ def c_var(name, protect=True):
                      'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not',
                      'not_eq', 'or', 'or_eq', 'xor', 'xor_eq'])
     # namespace pollution:
-    polluted_words = set(['unix'])
+    polluted_words = set(['unix', 'errno'])
     if protect and (name in c89_words | c99_words | c11_words | gcc_words | 
cpp_words | polluted_words):
         return "q_" + name
     return name.replace('-', '_').lstrip("*")
-- 
1.8.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]