From 8fa9bd6728a1d739bd53c297b92f962e465fa88e Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 4 Apr 2006 22:21:10 +0000 Subject: Removed extra exclamation marks in warning() calls as well. svn-id: r21608 --- backends/gp32/gp32std.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backends') diff --git a/backends/gp32/gp32std.cpp b/backends/gp32/gp32std.cpp index 5ce9ddd4c4..9bdf6f4e06 100644 --- a/backends/gp32/gp32std.cpp +++ b/backends/gp32/gp32std.cpp @@ -343,7 +343,7 @@ void *gp_calloc(size_t nitems, size_t size) { gp_memset(p, 0, nitems * size); // if (*(uint8 *)p != 0) -// warning("%s: calloc doesn't clear!", __FUNCTION__); //fixme: was error +// warning("%s: calloc doesn't clear", __FUNCTION__); //fixme: was error return p; } @@ -359,12 +359,12 @@ void gp_free(void *block) { np = ((uint32) block) - sizeof(uint32); up = (uint32 *) np; if (*up == 0x4321) { - warning("%s: double deallocation!", __FUNCTION__); + warning("%s: double deallocation", __FUNCTION__); return; } if (*up != 0x1234) { - warning("%s: corrupt block!", __FUNCTION__); + warning("%s: corrupt block", __FUNCTION__); return; } *up = 0x4321; -- cgit v1.2.3