Simplify twc_bar_item_away

Fixes a warning that would only manifest in Relase builds with -O3.
master
Håvard Pettersson 7 years ago
parent cde51e4807
commit c4abe4cd52

@ -39,21 +39,16 @@ twc_bar_item_away(const void *pointer, void *data, struct t_gui_bar_item *item,
if (!profile || !(profile->tox))
return NULL;
char *status;
switch (tox_self_get_status(profile->tox))
{
default:
case TOX_USER_STATUS_NONE:
status = NULL;
break;
return NULL;
case TOX_USER_STATUS_BUSY:
status = strdup("busy");
break;
return strdup("busy");
case TOX_USER_STATUS_AWAY:
status = strdup("away");
break;
return strdup("away");
}
return status;
}
char *

Loading…
Cancel
Save