X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_restore.c;h=8f5cbcfe3196b2b07a932b1af4aab1f1a5e7df17;hb=8ec0b3bf999cad58f8cc33e0fb37dcf7063e4a61;hp=6a28e34a5d13ae665532a6844cc3c9b3823faaca;hpb=9e0553265a0b0d700d1b75891b97dc5cf1031680;p=rrdtool.git diff --git a/src/rrd_restore.c b/src/rrd_restore.c index 6a28e34..8f5cbcf 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -219,11 +219,11 @@ static int get_xml_long( static int get_xml_ulong( xmlTextReaderPtr reader, - ulong *value) + unsigned long *value) { xmlChar *text; - ulong temp; + unsigned long temp; if ((text = get_xml_text(reader)) != NULL){ errno = 0; temp = strtoul((char *)text,NULL, 0);