From 971be6dc209239cbd8bd07b2f1ca64d471b680a4 Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 11 Sep 2017 01:04:06 +0200 Subject: [PATCH] tools: missing space separations. --- tools/compute-svg-viewbox.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/compute-svg-viewbox.c b/tools/compute-svg-viewbox.c index 4fbf19530d..8ce22cce65 100644 --- a/tools/compute-svg-viewbox.c +++ b/tools/compute-svg-viewbox.c @@ -57,7 +57,7 @@ int main (int argc, char **argv) return 1; } - id = g_strdup_printf("#%s", argv[2]); + id = g_strdup_printf ("#%s", argv[2]); if (! rsvg_handle_has_sub (handle, id)) { fprintf (stderr, "Error: the id \"%s\" does not exist.\n", id); @@ -75,9 +75,9 @@ int main (int argc, char **argv) id, dimension.width, dimension.height, position_data.x, position_data.y); } - printf("viewBox=\"%d %d %d %d\"", - position_data.x + prev_x, position_data.y + prev_y, - dimension.width, dimension.height); + printf ("viewBox=\"%d %d %d %d\"", + position_data.x + prev_x, position_data.y + prev_y, + dimension.width, dimension.height); g_object_unref (handle); g_free (id);