diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-04-20 16:14:05 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-04-21 01:51:46 +0800 |
commit | 85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5 (patch) | |
tree | d42a54e25eda179c70d46f2b376b67f1d2d1b929 /tests | |
parent | a78edd0144a01081ac254b40228c1b7c488df711 (diff) | |
download | gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.gz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.bz2 gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.lz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.xz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.zst gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.zip |
Remove a few GCC 4.6.0 warnings
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ephy-location-entry.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ephy-location-entry.c b/tests/ephy-location-entry.c index bac969e0f..6ce9c8603 100644 --- a/tests/ephy-location-entry.c +++ b/tests/ephy-location-entry.c @@ -50,14 +50,11 @@ static void test_entry_set_location (void) { const char *set = "test"; - const char *null; const char *get; EphyLocationEntry *entry; entry = EPHY_LOCATION_ENTRY (ephy_location_entry_new ()); - null = ephy_location_entry_get_location (entry); - ephy_location_entry_set_location (entry, set); get = ephy_location_entry_get_location (entry); g_assert_cmpstr (set, ==, get); |