From dd57e3334404381f94ac082bf16f0fa4833e5b9b Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Wed, 8 Nov 2017 14:58:46 +0000 Subject: Use fz_snprintf in preference to snprintf. If nothing else, this avoids warnings on VS2005. --- platform/gl/gl-main.c | 2 +- platform/x11/curl_stream.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'platform') diff --git a/platform/gl/gl-main.c b/platform/gl/gl-main.c index 724c9e41..5fc8d9b2 100644 --- a/platform/gl/gl-main.c +++ b/platform/gl/gl-main.c @@ -1061,7 +1061,7 @@ static void do_app(void) static int do_info_line(int x, int y, char *label, char *text) { char buf[512]; - snprintf(buf, sizeof buf, "%s: %s", label, text); + fz_snprintf(buf, sizeof buf, "%s: %s", label, text); ui_draw_string(ctx, x, y, buf); return y + ui.lineheight; } diff --git a/platform/x11/curl_stream.c b/platform/x11/curl_stream.c index e70607d5..05a9b14a 100644 --- a/platform/x11/curl_stream.c +++ b/platform/x11/curl_stream.c @@ -305,7 +305,7 @@ fetch_chunk(curl_stream_state *state) state->complete = 1; if (state->content_length > 0 && end >= state->content_length) end = state->content_length-1; - snprintf(text, 32, "%d-%d", start, end); + fz_snprintf(text, 32, "%d-%d", start, end); curl_easy_setopt(state->handle, CURLOPT_RANGE, text); ret = curl_easy_perform(state->handle); if (ret != CURLE_OK) -- cgit v1.2.3