summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test-common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-common.c b/tests/test-common.c
index a6339415..3b8880e3 100644
--- a/tests/test-common.c
+++ b/tests/test-common.c
@@ -225,7 +225,7 @@ attribute_from_string (const char *string)
{
char *s, *p;
PangoAttribute *attr;
- long start, end;
+ long long start, end;
GEnumClass *class;
int i;
PangoColor color;
@@ -234,14 +234,14 @@ attribute_from_string (const char *string)
g_assert (*s == '[');
s++;
- start = strtol (s, &p, 10);
+ start = strtoll (s, &p, 10);
g_assert (p > s);
g_assert (*p == ',');
s = p + 1;
g_assert (start >= 0);
- end = strtol (s, &p, 10);
+ end = strtoll (s, &p, 10);
g_assert (p > s);
g_assert (*p == ']');
s = p + 1;