diff options
author | Cody Russell <crussell@canonical.com> | 2009-10-21 09:33:57 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-21 09:33:57 -0500 |
commit | 0093c378498e9d203012a143e49137f72d8168ce (patch) | |
tree | 5321a9428398a1516065c4299cc980cd669f7f44 /tests | |
parent | 10e95506d81335d394b9cd955b7728b528c0fe4e (diff) | |
download | ayatana-indicator-application-0093c378498e9d203012a143e49137f72d8168ce.tar.gz ayatana-indicator-application-0093c378498e9d203012a143e49137f72d8168ce.tar.bz2 ayatana-indicator-application-0093c378498e9d203012a143e49137f72d8168ce.zip |
Ah, forgot a return. Cody would kill me! Oh, no.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-libcustomindicator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-libcustomindicator.c b/tests/test-libcustomindicator.c index 6dc9fe9..c264bfa 100644 --- a/tests/test-libcustomindicator.c +++ b/tests/test-libcustomindicator.c @@ -10,6 +10,7 @@ test_libcustomindicator_init (void) CustomIndicator * ci = CUSTOM_INDICATOR(g_object_new(CUSTOM_INDICATOR_TYPE, NULL)); g_assert(ci != NULL); g_object_unref(G_OBJECT(ci)); + return; } void |