summaryrefslogtreecommitdiff
path: root/sphinx/domains/c.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/domains/c.py')
-rw-r--r--sphinx/domains/c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py
index fe5ef6f12..b035e9e59 100644
--- a/sphinx/domains/c.py
+++ b/sphinx/domains/c.py
@@ -174,7 +174,7 @@ class CObject(ObjectDescription):
ctype, argname = arg.rsplit(' ', 1)
self._parse_type(param, ctype)
# separate by non-breaking space in the output
- param += nodes.emphasis(' ' + argname, u'\xa0' + argname)
+ param += nodes.emphasis(' ' + argname, '\xa0' + argname)
except ValueError:
# no argument name given, only the type
self._parse_type(param, arg)