diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-01-05 21:21:59 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-01-05 21:21:59 (GMT) |
commit | abec2acca0c300ab43e3fec73602e216c078b391 (patch) | |
tree | f2dc21158d5665cb409df475743226d59ae65a72 /src/common | |
parent | 639a993fd7400f95eb09ec69d89f227ef41b2865 (diff) |
Ensured the right macro is used (XSTR vs STR).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@448 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/xml.c b/src/common/xml.c index 36171b3..d01ae9b 100644 --- a/src/common/xml.c +++ b/src/common/xml.c @@ -898,7 +898,7 @@ bool add_content_to_node(xmlDocPtr xdoc, xmlXPathContextPtr context, const char bool add_uint_content_to_node(xmlDocPtr xdoc, xmlXPathContextPtr context, const char *path, unsigned int value) { xmlNodePtr node; /* Noeud à modifier */ - char content[sizeof(STR(UINT_MAX)) + 1];/* Valeur en chaîne */ + char content[sizeof(XSTR(UINT_MAX)) + 1];/* Valeur en chaîne */ if (content == NULL) return true; |