aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-04 22:21:10 +0000
committerEugene Sandulenko2006-04-04 22:21:10 +0000
commit8fa9bd6728a1d739bd53c297b92f962e465fa88e (patch)
treef68a4ec8d5e14a09f42f26b9f588673a9a1ae443 /backends
parentd292c0ec55024ef95833f56300987a19e2ef4e31 (diff)
downloadscummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.tar.gz
scummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.tar.bz2
scummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.zip
Removed extra exclamation marks in warning() calls as well.
svn-id: r21608
Diffstat (limited to 'backends')
-rw-r--r--backends/gp32/gp32std.cpp6
1 files changed, 3 insertions, 3 deletions
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;