Fix copyright date and indentation.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@345 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-04-10 00:34:30 +00:00
parent 6cf19304d8
commit 730b7fffe3

View file

@ -1,5 +1,5 @@
/* NSAssertionHandler - Object encapsulation of assertions
Copyright (C) 1993,1994 Free Software Foundation, Inc.
Copyright (C) 1995 Free Software Foundation, Inc.
Written by: Adam Fedor <fedor@boulder.colorado.edu>
Date: Apr 1995
@ -27,7 +27,7 @@
+ (NSAssertionHandler *)currentHandler
{
// FIXME: current handler should come from current thread dictionary
// FIXME: current handler should come from current thread dictionary;
static NSAssertionHandler *only_one = nil;
if (!only_one)
@ -43,7 +43,7 @@
va_list ap;
va_start(ap, format);
// FIXME: should be NSLog
// FIXME: should be NSLog;
fprintf(stderr, "Assertion failed in %s, file %s:%d. ",
[functionName cString], [fileName cString], line);
vfprintf(stderr, [format cString], ap);
@ -64,7 +64,7 @@
va_list ap;
va_start(ap, format);
// FIXME: should be NSLog
// FIXME: should be NSLog;
fprintf(stderr, "Assertion failed in %s, method %s, file %s:%d. ",
object_get_class_name(object), sel_get_name(aSelector),
[fileName cString], line);