summaryrefslogtreecommitdiff
path: root/src/common/xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/xml.c')
-rw-r--r--src/common/xml.c2
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;