summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c02c3b5)
raw | patch | inline | side by side (parent: c02c3b5)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 26 May 2009 15:20:05 +0000 (15:20 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 26 May 2009 15:20:05 +0000 (15:20 +0000) |
src/rrd_restore.c | patch | blob | history |
diff --git a/src/rrd_restore.c b/src/rrd_restore.c
index 6a28e34a5d13ae665532a6844cc3c9b3823faaca..8f5cbcfe3196b2b07a932b1af4aab1f1a5e7df17 100644 (file)
--- a/src/rrd_restore.c
+++ b/src/rrd_restore.c
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);