[idms-dbma-devel]commit - r52 - trunk/lib
Status: Pre-Alpha
Brought to you by:
nkukard
|
From: <idm...@li...> - 2004-10-24 17:13:39
|
Author: nkukard Date: 2004-10-24 19:13:30 +0200 (Sun, 24 Oct 2004) New Revision: 52 Modified: trunk/lib/misc.c Log: * Control reached end of non void function Modified: trunk/lib/misc.c =================================================================== --- trunk/lib/misc.c 2004-10-24 17:10:50 UTC (rev 51) +++ trunk/lib/misc.c 2004-10-24 17:13:30 UTC (rev 52) @@ -248,10 +248,12 @@ i++; /* Check for match */ if (strncasecmp(month,*mStr,3) == 0) - return i; + break; *mStr++; } + + return i; } /* function to return string with no char at the ends */ |