help_url(ui) Fix Wunreachable-code

help_url.c:308:15: warning: code will never be executed [-Wunreachable-code]
This commit is contained in:
Alexis La Goutte 2022-01-17 10:49:02 +00:00 committed by A Wireshark GitLab Utility
parent f5eceb4ad0
commit 13c42f5f83

View File

@ -304,8 +304,8 @@ topic_action_url(topic_action_e action)
case(TOPIC_ACTION_NONE):
default:
ws_assert_not_reached();
url = g_strdup(WS_HOME_PAGE_URL);
ws_assert_not_reached();
}
return url;