From: <sja...@us...> - 2003-09-02 01:15:57
|
Update of /cvsroot/binaryphp/binaryphp In directory sc8-pr-cvs1:/tmp/cvs-serv9297 Modified Files: php_var_type.hpp Log Message: hanged `return -1;` to `return "";` in operator char*(), woops Index: php_var_type.hpp =================================================================== RCS file: /cvsroot/binaryphp/binaryphp/php_var_type.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** php_var_type.hpp 2 Sep 2003 01:09:00 -0000 1.3 --- php_var_type.hpp 2 Sep 2003 01:15:53 -0000 1.4 *************** *** 54,58 **** if(is_resource) return "Resource"; if(is_object) return "Object"; ! return -1; } --- 54,58 ---- if(is_resource) return "Resource"; if(is_object) return "Object"; ! return ""; } |