summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-30 22:29:24 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-30 22:29:24 +0000
commit235e3939d5a9607456aacb3bde3c06b425dca0a9 (patch)
treedbd5452a03ddb906f1343011886f54be65e43d28
parent1dd6ee3f6de30aa839ea5d6f8bc51e021a07cfc6 (diff)
downloadphp-git-235e3939d5a9607456aacb3bde3c06b425dca0a9.tar.gz
s/pinter/pointer/
-rw-r--r--Zend/zend_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index 6e709edda6..a5f45462cc 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -793,7 +793,7 @@ static int zend_mm_check_ptr(zend_mm_heap *heap, void *ptr, int silent ZEND_FILE
#ifdef ZTS
if (ZEND_MM_BAD_THREAD_ID(p)) {
if (!silent) {
- zend_debug_alloc_output("Invalid pinter: ((thread_id=0x%0.8X) != (expected=0x%0.8X))\n", (long)p->thread_id, (long)tsrm_thread_id());
+ zend_debug_alloc_output("Invalid pointer: ((thread_id=0x%0.8X) != (expected=0x%0.8X))\n", (long)p->thread_id, (long)tsrm_thread_id());
had_problems = 1;
} else {
return zend_mm_check_ptr(heap, ptr, 0 ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);