From e8b443052de7d29b937610a6689ed5d6dbde25a8 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Wed, 9 Feb 2005 13:03:21 +0000 Subject: [PATCH] /me is silly git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5868 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 4 ++-- 1 file 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 { /* 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); };