jani                                     Tue, 08 Dec 2009 08:34:53 +0000

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

Log:
No tabs here

Changed paths:
    U   php/php-src/trunk/main/main.c

Modified: php/php-src/trunk/main/main.c
===================================================================
--- php/php-src/trunk/main/main.c       2009-12-08 08:21:56 UTC (rev 291866)
+++ php/php-src/trunk/main/main.c       2009-12-08 08:34:53 UTC (rev 291867)
@@ -1352,11 +1352,11 @@

                                        snprintf(memory_leak_buf, 512, "Last 
leak repeated %ld time%s\n", leak_count, (leak_count>1?"s":""));
                                }
-#      if defined(PHP_WIN32)
+# if defined(PHP_WIN32)
                                OutputDebugString(memory_leak_buf);
-#      else
+# else
                                fprintf(stderr, "%s", memory_leak_buf);
-#      endif
+# endif
                        }
 #endif
                        break;
@@ -1366,11 +1366,11 @@
                                char memory_leak_buf[512];

                                snprintf(memory_leak_buf, 512, "=== Total %d 
memory leaks detected ===\n", *((zend_uint *) data));
-#      if defined(PHP_WIN32)
+# if defined(PHP_WIN32)
                                OutputDebugString(memory_leak_buf);
-#      else
+# else
                                fprintf(stderr, "%s", memory_leak_buf);
-#      endif
+# endif
                        }
 #endif
                        break;
@@ -1389,11 +1389,11 @@
                                } else {
                                        snprintf(memory_leak_buf, 
sizeof(memory_leak_buf), "[null]  Script:  '%s'\n", 
SAFE_FILENAME(SG(request_info).path_translated));
                                }
-#      if defined(PHP_WIN32)
+#if defined(PHP_WIN32)
                                OutputDebugString(memory_leak_buf);
-#      else
+# else
                                fprintf(stderr, "%s", memory_leak_buf);
-#      endif
+#endif
                        }
                        break;
        }

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

Reply via email to