pajoye                                   Wed, 22 Sep 2010 21:28:37 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=303693

Log:
- Fix #52908, fix declaration

Bug: http://bugs.php.net/52908 (Open) Missing data types in function prototype
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/TSRM/tsrm_virtual_cwd.h

Modified: php/php-src/branches/PHP_5_3/TSRM/tsrm_virtual_cwd.h
===================================================================
--- php/php-src/branches/PHP_5_3/TSRM/tsrm_virtual_cwd.h        2010-09-22 
21:22:40 UTC (rev 303692)
+++ php/php-src/branches/PHP_5_3/TSRM/tsrm_virtual_cwd.h        2010-09-22 
21:28:37 UTC (rev 303693)
@@ -133,7 +133,7 @@
 CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
 # define php_sys_stat(path, buf) php_sys_stat_ex(path, buf, 0)
 # define php_sys_lstat(path, buf) php_sys_stat_ex(path, buf, 1)
-CWD_API int php_sys_readlink(link, target, target_len);
+CWD_API int php_sys_readlink(const char *link, char *target, size_t 
target_len);
 #else
 # define php_sys_stat stat
 # define php_sys_lstat lstat

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to