]> granicus.if.org Git - php/commitdiff
Remove debugging printf
authorWez Furlong <wez@php.net>
Sun, 17 Nov 2002 00:08:42 +0000 (00:08 +0000)
committerWez Furlong <wez@php.net>
Sun, 17 Nov 2002 00:08:42 +0000 (00:08 +0000)
main/streams.c

index e9ab2bf898542194495563fd1daca7aa128a8ac4..1990a692e998a667519350d3298fe39ffd61ed01 100755 (executable)
@@ -48,7 +48,6 @@
 #endif
 
 #define STREAM_DEBUG 0
-
 #define STREAM_WRAPPER_PLAIN_FILES     ((php_stream_wrapper*)-1)
 
 /* {{{ some macros to help track leaks */
@@ -1343,7 +1342,6 @@ static int php_stdiop_close(php_stream *stream, int close_handle TSRMLS_DC)
                        ret = fclose(data->file);
                }
                if (data->temp_file_name) {
-                       printf("temp: %s\n", data->temp_file_name);
                        unlink(data->temp_file_name);
                        efree(data->temp_file_name);
                }