diff options
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; |