]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
switch that back to int
authorMathieu Rene <mrene@avgs.ca>
Tue, 9 Feb 2010 18:21:03 +0000 (18:21 +0000)
committerMathieu Rene <mrene@avgs.ca>
Tue, 9 Feb 2010 18:21:03 +0000 (18:21 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16593 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_utils.h

index 0872d7a64cd842959eff57eb3ec00ffda3e38957..a01c1e3c8e717951ea6879ac54fc4aec44b21753 100644 (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';
 }