BUILD: http_act: cast file sizes when reporting file size error
As seen in issue #496, st_size may be of varying types on different
systems. Let's simply cast it to long long and use long long for
all size outputs.
diff --git a/src/http_act.c b/src/http_act.c
index a3dce68..4c0c5c4 100644
--- a/src/http_act.c
+++ b/src/http_act.c
@@ -2134,8 +2134,8 @@
goto error;
}
if (stat.st_size > global.tune.bufsize) {
- memprintf(err, "file '%s' exceeds the buffer size (%ld > %d)",
- args[cur_arg], stat.st_size, global.tune.bufsize);
+ memprintf(err, "file '%s' exceeds the buffer size (%lld > %d)",
+ args[cur_arg], (long long)stat.st_size, global.tune.bufsize);
goto error;
}
objlen = stat.st_size;
@@ -2183,8 +2183,8 @@
goto error;
}
if (stat.st_size > global.tune.bufsize) {
- memprintf(err, "file '%s' exceeds the buffer size (%ld > %d)",
- args[cur_arg], stat.st_size, global.tune.bufsize);
+ memprintf(err, "file '%s' exceeds the buffer size (%lld > %d)",
+ args[cur_arg], (long long)stat.st_size, global.tune.bufsize);
goto error;
}
objlen = stat.st_size;