diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/svg/svg-run.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/svg/svg-run.c b/source/svg/svg-run.c index 8cffce6d..e05096ae 100644 --- a/source/svg/svg-run.c +++ b/source/svg/svg-run.c @@ -643,7 +643,7 @@ svg_parse_viewport(fz_context *ctx, svg_document *doc, fz_xml *node, svg_state * if (h_att) h = svg_parse_length(h_att, state->viewbox_h, state->fontsize); /* TODO: new transform */ - fz_warn(ctx, "push viewport: %g %g %g %g\n", x, y, w, h); + fz_warn(ctx, "push viewport: %g %g %g %g", x, y, w, h); state->viewport_w = w; state->viewport_h = h; @@ -664,7 +664,7 @@ svg_parse_viewbox(fz_context *ctx, svg_document *doc, fz_xml *node, svg_state *s sscanf(viewbox_att, "%g %g %g %g", &min_x, &min_y, &box_w, &box_h); /* scale and translate to fit [x y w h] to [0 0 viewport.w viewport.h] */ - fz_warn(ctx, "push viewbox: %g %g %g %g\n", min_x, min_y, box_w, box_h); + fz_warn(ctx, "push viewbox: %g %g %g %g", min_x, min_y, box_w, box_h); } } |