summaryrefslogtreecommitdiff
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-01-20 01:52:17 +0000
committerJoão Valverde <j@v6e.pt>2016-01-20 16:12:07 +0000
commit4c330cc0e4c735a255dc325f68d3e0acbbacbae2 (patch)
treec11f2fea88c0232c7fb9f697e0d19f95ba1c7310 /epan/strutil.h
parentd8e98620448c3bf7b7b8183594862f505ed07cbf (diff)
downloadwireshark-4c330cc0e4c735a255dc325f68d3e0acbbacbae2.tar.gz
Fix constness
Change-Id: I29723dae83373768edd254c60e48a717abf20694 Reviewed-on: https://code.wireshark.org/review/13436 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index f92136bbcd..62c1dac564 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -269,7 +269,7 @@ char * convert_string_case(const char *string, gboolean case_insensitive);
* Otherwise it returns NULL.
*/
WS_DLL_PUBLIC
-char * epan_strcasestr(const char *haystack, const char *needle);
+const char * epan_strcasestr(const char *haystack, const char *needle);
/** Guarantee a non-null string.
*