diff options
author | Robert Tari <robert@tari.in> | 2023-08-09 14:41:14 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2023-08-09 14:41:14 +0200 |
commit | 25001b09fdf8d10b2c209bfedd882bd90bd5b08a (patch) | |
tree | 685df8f046a68c865925207950cfcd6fbee53b9d /tests | |
parent | 92010355e93cbf844c7828297615ca57a1f84e31 (diff) | |
download | libayatana-appindicator-25001b09fdf8d10b2c209bfedd882bd90bd5b08a.tar.gz libayatana-appindicator-25001b09fdf8d10b2c209bfedd882bd90bd5b08a.tar.bz2 libayatana-appindicator-25001b09fdf8d10b2c209bfedd882bd90bd5b08a.zip |
tests/test-libappindicator.c: Drop unread value
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-libappindicator.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test-libappindicator.c b/tests/test-libappindicator.c index 68c6a93..0273398 100644 --- a/tests/test-libappindicator.c +++ b/tests/test-libappindicator.c @@ -68,15 +68,12 @@ test_libappindicator_prop_signals (void) gboolean signaled = FALSE; gulong handlerid; - handlerid = 0; handlerid = g_signal_connect(G_OBJECT(ci), "new-icon", G_CALLBACK(test_libappindicator_prop_signals_helper), &signaled); g_assert(handlerid != 0); - handlerid = 0; handlerid = g_signal_connect(G_OBJECT(ci), "new-attention-icon", G_CALLBACK(test_libappindicator_prop_signals_helper), &signaled); g_assert(handlerid != 0); - handlerid = 0; handlerid = g_signal_connect(G_OBJECT(ci), "new-status", G_CALLBACK(test_libappindicator_prop_signals_status_helper), &signaled); g_assert(handlerid != 0); |