From: oetiker Date: Tue, 26 May 2009 15:20:05 +0000 (+0000) Subject: "ulong" is not portable. must be unsigned long -- kevin X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=df08107993bfd97975a66f873f1072cc23e290be;p=rrdtool-all.git "ulong" is not portable. must be unsigned long -- kevin git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1815 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index 6a28e34a..8f5cbcfe 100644 --- a/program/src/rrd_restore.c +++ b/program/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);