Use %x to print uint32 as long ints are 64-bit long on x64 Linux

This commit is contained in:
Tobias Brunner
2012-09-28 18:09:08 +02:00
parent a05f3b2021
commit 911e3156a0
+1 -1
View File
@@ -163,7 +163,7 @@ static void write_childend(xmlTextWriterPtr writer, child_sa_t *child, bool loca
{
linked_list_t *list;
xmlTextWriterWriteFormatElement(writer, "spi", "%lx",
xmlTextWriterWriteFormatElement(writer, "spi", "%x",
htonl(child->get_spi(child, local)));
list = child->get_traffic_selectors(child, local);
write_networks(writer, "networks", list);