summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-03-23 18:52:37 +0000
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-03-23 18:52:37 +0000
commitd09b92d7e48ecee898ed158353021b7b3b6bae85 (patch)
tree10da1932fbc0eacb54a9cbcd9e508884e1bae5da /src/gallium/auxiliary/util
parent732422f6708199d6655185b1a5daec86efe2f1b7 (diff)
gallium: Fix typo.
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/p_debug_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/p_debug_mem.c b/src/gallium/auxiliary/util/p_debug_mem.c
index 56599dafa6..c160afe5b7 100644
--- a/src/gallium/auxiliary/util/p_debug_mem.c
+++ b/src/gallium/auxiliary/util/p_debug_mem.c
@@ -165,7 +165,7 @@ debug_memory_report(void)
hdr = LIST_ENTRY(struct debug_memory_header, entry, head);
ptr = (void *)((char *)hdr + sizeof(*hdr));
if(hdr->no >= start_no)
- debug_printf("%s:%u:%s: %u byte st %p not freed\n",
+ debug_printf("%s:%u:%s: %u bytes at %p not freed\n",
hdr->file, hdr->line, hdr->function,
hdr->size, ptr);
}