summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2012-06-20 18:58:31 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2012-06-20 18:58:31 +0100
commit98982331cb7709d90d0f0bc09621cd8fbb791fb0 (patch)
tree22639f299c86c0adda735b01616a8d4eeb6cad71
parente3ca87784ea52d6008fcd34bf85066cb7d8b8497 (diff)
downloadclutter-98982331cb7709d90d0f0bc09621cd8fbb791fb0.tar.gz
conform/script: Add the return type for the margin test
The compiler would default to 'int', and warn - and then warn again because the function would not return a value.
-rw-r--r--tests/conform/script-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conform/script-parser.c b/tests/conform/script-parser.c
index 8c2ae7cd0..0b455e180 100644
--- a/tests/conform/script-parser.c
+++ b/tests/conform/script-parser.c
@@ -399,6 +399,7 @@ script_layout_property (TestConformSimpleFixture *fixture,
g_object_unref (script);
}
+void
script_margin (TestConformSimpleFixture *fixture,
gpointer dummy)
{
@@ -441,4 +442,3 @@ script_margin (TestConformSimpleFixture *fixture,
g_object_unref (script);
g_free (test_file);
}
-