Remove a dead assignment that scanbuild found

Wed, 27 Apr 2022 23:32:35 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Wed, 27 Apr 2022 23:32:35 -0500
changeset 41337
a8b8e1703239
parent 41336
844484fb31aa
child 41346
d25fecfb02f9

Remove a dead assignment that scanbuild found

Testing Done:
Ran the scanbuild container.

Reviewed at https://reviews.imfreedom.org/r/1397/

pidgin/pidginstatusbox.c file | annotate | diff | comparison | revisions
--- a/pidgin/pidginstatusbox.c	Wed Apr 27 10:52:55 2022 -0500
+++ b/pidgin/pidginstatusbox.c	Wed Apr 27 23:32:35 2022 -0500
@@ -98,7 +98,7 @@
 		primitive = purple_savedstatus_get_primitive_type(status);
 		id = g_strdup_printf(PRIMITIVE_FORMAT, primitive);
 
-		set = gtk_combo_box_set_active_id(GTK_COMBO_BOX(status_box->combo), id);
+		gtk_combo_box_set_active_id(GTK_COMBO_BOX(status_box->combo), id);
 		g_free(id);
 	}
 }

mercurial