diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 2ae325a..f2f0a6d 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -298,8 +298,8 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ - char (*strchr)(const char *s, int c); - char (*strcat)(char *s1, const char *s2); + char *(*strchr)(const char *s, int c); + char *(*strcat)(char *s1, const char *s2); }; |