diff options
author | Colomban Wendling <[email protected]> | 2022-11-23 20:52:58 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-12-23 10:59:22 +0000 |
commit | 7e7a47ac17ff0ae1ee18f2a709c6dd4cb42a8ca7 (patch) | |
tree | 206cd704c774ffaabdfd4c188d7d9d509dd2c986 | |
parent | 288237a1c1681f71b2c5273e73bc56c5133edfa0 (diff) | |
download | caja-7e7a47ac17ff0ae1ee18f2a709c6dd4cb42a8ca7.tar.bz2 caja-7e7a47ac17ff0ae1ee18f2a709c6dd4cb42a8ca7.tar.xz |
Remove dead assignment
Found by cppcheck: https://caja.mate-desktop.dev/2022-11-23-174623-5790-cppcheck@ae663c369cf2_desktop-no-overflow/18.html#line-630
-rw-r--r-- | libcaja-private/caja-icon-dnd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcaja-private/caja-icon-dnd.c b/libcaja-private/caja-icon-dnd.c index dde633e3..b9dfc36f 100644 --- a/libcaja-private/caja-icon-dnd.c +++ b/libcaja-private/caja-icon-dnd.c @@ -620,8 +620,6 @@ caja_icon_container_selection_items_local (CajaIconContainer *container, /* must have at least one item */ g_assert (items); - result = FALSE; - /* get the URI associated with the container */ container_uri_string = get_container_uri (container); |