summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 2ae325a6d8..f2f0a6de9d 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -298,8 +298,8 @@ struct plugin_api {
298 /* new stuff at the end, sort into place next time 298 /* new stuff at the end, sort into place next time
299 the API gets incompatible */ 299 the API gets incompatible */
300 300
301 char (*strchr)(const char *s, int c); 301 char *(*strchr)(const char *s, int c);
302 char (*strcat)(char *s1, const char *s2); 302 char *(*strcat)(char *s1, const char *s2);
303 303
304}; 304};
305 305