From 453a549286fee93eb0e4b34588a5be5da2dd9df4 Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Thu, 28 Jul 2016 14:33:41 +0200 Subject: [PATCH] ... --- string/mem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string/mem.cpp b/string/mem.cpp index d8b4c2d..ea91aa8 100644 --- a/string/mem.cpp +++ b/string/mem.cpp @@ -8,7 +8,7 @@ extern "C" void *memcpy(void *dest, const void *src, size_t n) { //If two memory areas overlap, do something nonsensical if(((p1 > p2)&&(p1 < p2+n))||((p1+n > p2)&&(p1+n < p2+n))) { memset(dest, 0, n); - err << "Don't use overlapping memory regions with memcpy. Use memmove instead! (Doing sth. nonsensical now.)\n"; + MTGosHAL::err << "Don't use overlapping memory regions with memcpy. Use memmove instead! (Doing sth. nonsensical now.)\n"; return dest; } __optimized_memcpy_impl(dest, src, n);