From bf7f08056d1f9f04233b1752b978b5a77327943e Mon Sep 17 00:00:00 2001 From: CaS Date: Sun, 23 Oct 2005 21:30:24 +0000 Subject: [PATCH] Add missing newlines in fprintfs git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21869 72102866-910b-0410-8b05-ffd578937521 --- Source/NSException.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/NSException.m b/Source/NSException.m index d2ce750c8..6d83c734f 100644 --- a/Source/NSException.m +++ b/Source/NSException.m @@ -369,7 +369,7 @@ _NSAddHandler (NSHandler* handler) if (thread->_exception_handler && IsBadReadPtr(thread->_exception_handler, sizeof(NSHandler))) { - fprintf(stderr, "ERROR: Current exception handler is bogus."); + fprintf(stderr, "ERROR: Current exception handler is bogus.\n"); } #endif handler->next = thread->_exception_handler; @@ -386,20 +386,20 @@ _NSRemoveHandler (NSHandler* handler) if (thread->_exception_handler != handler) { fprintf(stderr, "ERROR: Removing exception handler that is not on top " - "of the stack. (You probably called return in an NS_DURING block.)"); + "of the stack. (You probably called return in an NS_DURING block.)\n"); } #if defined(__WIN32__) if (IsBadReadPtr(handler, sizeof(NSHandler))) { fprintf(stderr, "ERROR: Could not remove exception handler, " - "handler is bad pointer."); + "handler is bad pointer.\n"); thread->_exception_handler = 0; return; } if (handler->next && IsBadReadPtr(handler->next, sizeof(NSHandler))) { fprintf(stderr, "ERROR: Could not restore exception handler, " - "handler->next is bad pointer."); + "handler->next is bad pointer.\n"); thread->_exception_handler = 0; return; }