From: Bruno Haible Date: Fri, 18 Aug 2006 18:25:12 +0000 (+0000) Subject: GNU style cast. X-Git-Tag: 0.16.x-branchpoint~194 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1bb8254a1bb99a643669a1ab5615ea1e93e4d13;p=thirdparty%2Fgettext.git GNU style cast. --- diff --git a/gnulib-local/lib/c-strstr.c b/gnulib-local/lib/c-strstr.c index 11ef8ec15..0cf97d6ff 100644 --- a/gnulib-local/lib/c-strstr.c +++ b/gnulib-local/lib/c-strstr.c @@ -111,7 +111,7 @@ jin: a = *++haystack; } } foundneedle: - return (char*) haystack; + return (char *) haystack; ret0: return 0; }