summaryrefslogtreecommitdiff
path: root/source/xps/xps-path.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/xps/xps-path.c')
-rw-r--r--source/xps/xps-path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/xps/xps-path.c b/source/xps/xps-path.c
index 7b71575f..cf4f2ff7 100644
--- a/source/xps/xps-path.c
+++ b/source/xps/xps-path.c
@@ -12,7 +12,7 @@ xps_parse_float_array(char *s, int num, float *x)
{
while (*s == 0x0d || *s == '\t' || *s == ' ' || *s == 0x0a)
s++;
- x[k] = (float)strtod(s, &s);
+ x[k] = (float)fz_strtod(s, &s);
while (*s == 0x0d || *s == '\t' || *s == ' ' || *s == 0x0a)
s++;
if (*s == ',')