From: Simon Marlow Date: Wed, 17 Oct 2007 12:18:55 +0000 (+0000) Subject: fix an error message (barf -> sysErrorBelch) X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=c408face730fdabecc1d5c91e17b56a1c1e5eb7a fix an error message (barf -> sysErrorBelch) --- diff --git a/rts/win32/OSMem.c b/rts/win32/OSMem.c index 356c6df..cdecf02 100644 --- a/rts/win32/OSMem.c +++ b/rts/win32/OSMem.c @@ -30,7 +30,8 @@ void setExecutable (void *p, lnat len, rtsBool exec) exec ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE, &dwOldProtect) == 0) { - barf("makeExecutable: failed to protect 0x%p; error=%lu; old protection: %lu\n", - p, (unsigned long)GetLastError(), (unsigned long)dwOldProtect); + sysErrorBelch("makeExecutable: failed to protect 0x%p; old protection: %lu\n", + p, (unsigned long)dwOldProtect); + stg_exit(EXIT_FAILURE); } }