switch that back to int

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16593 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Mathieu Rene 2010-02-09 18:21:03 +00:00
parent cd0f7c70e2
commit 00e178963c
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ SWITCH_DECLARE(int) switch_isxdigit(int c);
\param s the string to test
\return true value if the string is NULL or zero length
*/
_Check_return_ static inline switch_bool_t _zstr(_In_opt_z_ const char *s)
_Check_return_ static inline int _zstr(_In_opt_z_ const char *s)
{
return !s || *s == '\0';
}