pajoye                                   Mon, 04 Oct 2010 10:35:32 +0000

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

Log:
- Fix #52908, fix declaration

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

Modified: php/php-src/trunk/TSRM/tsrm_virtual_cwd.h
===================================================================
--- php/php-src/trunk/TSRM/tsrm_virtual_cwd.h   2010-10-04 10:16:12 UTC (rev 
303975)
+++ php/php-src/trunk/TSRM/tsrm_virtual_cwd.h   2010-10-04 10:35:32 UTC (rev 
303976)
@@ -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