[gimp] tools: missing space separations.
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] tools: missing space separations.
- Date: Mon, 11 Sep 2017 00:53:50 +0000 (UTC)
commit 971be6dc209239cbd8bd07b2f1ca64d471b680a4
Author: Jehan <jehan girinstud io>
Date: Mon Sep 11 01:04:06 2017 +0200
tools: missing space separations.
tools/compute-svg-viewbox.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tools/compute-svg-viewbox.c b/tools/compute-svg-viewbox.c
index 4fbf195..8ce22cc 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]