summaryrefslogtreecommitdiff
path: root/ui/help_url.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-09-13 11:13:17 +0200
committerMichael Mann <mmann78@netscape.net>2015-09-13 15:52:13 +0000
commit7f191c721a500b83a8f9ef6ece51bb05bebf8527 (patch)
treea07633c2e69021fe8b23ad9a6b34007ef3df7260 /ui/help_url.c
parent66e91151610be9a8d9568e610c293eb3321728c5 (diff)
downloadwireshark-7f191c721a500b83a8f9ef6ece51bb05bebf8527.tar.gz
help_url: fix typo found by Coverity (CID 1323927) and Clang analyzer
Change-Id: I26fda5d118d55f26f449ed858e9e57d477709bcb Reviewed-on: https://code.wireshark.org/review/10508 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/help_url.c')
-rw-r--r--ui/help_url.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/help_url.c b/ui/help_url.c
index af7c94dcf0..42ae987204 100644
--- a/ui/help_url.c
+++ b/ui/help_url.c
@@ -346,10 +346,11 @@ topic_action_url(topic_action_e action)
url = user_guide_url("ChTelRTPAnalysis.html");
break;
case(HELP_NEW_PACKET_DIALOG):
- return user_guide_url("ChapterWork.html#ChWorkPacketSepView");
+ url = user_guide_url("ChapterWork.html#ChWorkPacketSepView");
+ break;
case(HELP_IAX2_ANALYSIS_DIALOG):
url = user_guide_url("ChTelIAX2Analysis.html");
-
+ break;
case(TOPIC_ACTION_NONE):
default:
g_assert_not_reached();