diff options
author | Sterling Hughes <sterling@php.net> | 2000-08-18 13:24:00 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-08-18 13:24:00 +0000 |
commit | c80f2bcba2dcac28046d845c30553e51b2926e80 (patch) | |
tree | 8445136f57d596b43e686f6c09276ba9ed2284bd /ext/curl/php_curl.h | |
parent | 1b8ee02fd676644bf938b97c390959f5a432bbda (diff) | |
download | php-git-c80f2bcba2dcac28046d845c30553e51b2926e80.tar.gz |
Purely cosmetic.
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 5ad041507b..42fdde997a 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -87,16 +87,15 @@ PHP_FUNCTION(curl_close); #define CE_BAD_CALLING_ORDER 44 #define C_LAST 45 -struct curl_fileid_table -{ +struct curl_file_id_table { int id; - struct curl_fileid_table *next; + struct curl_file_id_table *next; }; typedef struct { int use_file; int le_curl; - struct curl_fileid_table *output_node, output_start; + struct curl_file_id_table *output_node, output_start; } php_curl_globals; #ifdef ZTS |