From: Mathieu Rene Date: Tue, 9 Feb 2010 18:21:03 +0000 (+0000) Subject: switch that back to int X-Git-Tag: v1.0.6~519 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00e178963c2bfa1022dfc328e0ab62b5d3e316c0;p=thirdparty%2Ffreeswitch.git switch that back to int git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16593 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/include/switch_utils.h b/src/include/switch_utils.h index 0872d7a64c..a01c1e3c8e 100644 --- a/src/include/switch_utils.h +++ b/src/include/switch_utils.h @@ -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'; }