diff options
author | foobar <sniper@php.net> | 2002-07-07 00:55:51 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-07-07 00:55:51 +0000 |
commit | 5ea1e264fffd7c5bfa47b786822fdf01586f731a (patch) | |
tree | 8eda513da7815a995baa86e984ff453beb890f40 | |
parent | d85eeba77c6d82e227d7ec39b772f992640c1ecd (diff) | |
download | php-git-5ea1e264fffd7c5bfa47b786822fdf01586f731a.tar.gz |
ws fix
-rw-r--r-- | ext/dio/dio.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/dio/dio.c b/ext/dio/dio.c index fe8d84e8af..efbced09eb 100644 --- a/ext/dio/dio.c +++ b/ext/dio/dio.c @@ -34,14 +34,14 @@ static int le_fd; function_entry dio_functions[] = { - PHP_FE(dio_open, NULL) - PHP_FE(dio_truncate, NULL) - PHP_FE(dio_stat, NULL) + PHP_FE(dio_open, NULL) + PHP_FE(dio_truncate, NULL) + PHP_FE(dio_stat, NULL) PHP_FE(dio_seek, NULL) PHP_FE(dio_fcntl, NULL) PHP_FE(dio_read, NULL) - PHP_FE(dio_write, NULL) - PHP_FE(dio_close, NULL) + PHP_FE(dio_write, NULL) + PHP_FE(dio_close, NULL) {NULL, NULL, NULL} }; @@ -55,7 +55,7 @@ zend_module_entry dio_module_entry = { NULL, NULL, PHP_MINFO(dio), - "0.1", + "0.1", STANDARD_MODULE_PROPERTIES }; @@ -78,7 +78,7 @@ static void _dio_close_fd(zend_rsrc_list_entry *rsrc TSRMLS_DC) PHP_MINIT_FUNCTION(dio) { - le_fd = zend_register_list_destructors_ex(_dio_close_fd, NULL, le_fd_name, module_number); + le_fd = zend_register_list_destructors_ex(_dio_close_fd, NULL, le_fd_name, module_number); RDIOC(O_RDONLY); RDIOC(O_WRONLY); |