Navigation Menu

Skip to content

Commit

Permalink
Use _stricmp() instead of stricmp() because stricmp() is deprecated
Browse files Browse the repository at this point in the history
Redmine: refs #2597
  • Loading branch information
s-yata committed Jun 5, 2014
1 parent 94d3cf4 commit 60699cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/groonga_in.h
Expand Up @@ -132,7 +132,7 @@
# define fstat(fd, buf) _fstat(fd, buf)
#endif /* !defined(__GNUC__) && _MSC_VER < 1400 */
#if !defined(strcasecmp)
# define strcasecmp(s1, s2) stricmp(s1, s2)
# define strcasecmp(s1, s2) _stricmp(s1, s2)
#endif /* !defined(strcasecmp) */

#ifdef __GNUC__
Expand Down

0 comments on commit 60699cf

Please sign in to comment.