summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/xmlfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/xmlfile.h')
-rw-r--r--src/lib/util/xmlfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/xmlfile.h b/src/lib/util/xmlfile.h
index 8d09b2b7e1e..0780172b0c2 100644
--- a/src/lib/util/xmlfile.h
+++ b/src/lib/util/xmlfile.h
@@ -138,7 +138,7 @@ public:
const char *get_attribute_string(const char *attribute, const char *defvalue) const;
// return the integer value of an attribute, or the specified default if not present
- int get_attribute_int(const char *attribute, int defvalue) const;
+ long long get_attribute_int(const char *attribute, long long defvalue) const;
// return the format of the given integer attribute
int_format get_attribute_int_format(const char *attribute) const;
@@ -150,7 +150,7 @@ public:
void set_attribute(const char *name, const char *value);
// set the integer value of an attribute
- void set_attribute_int(const char *name, int value);
+ void set_attribute_int(const char *name, long long value);
// set the float value of an attribute
void set_attribute_float(const char *name, float value);