OSDN Git Service

Update copyright to 2004.
[pg-rex/syncrep.git] / src / backend / utils / error / assert.c
index f35636e..c0696ea 100644 (file)
@@ -3,12 +3,12 @@
  * assert.c
  *       Assert code.
  *
- * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/error/assert.c,v 1.26 2004/04/19 17:42:58 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/error/assert.c,v 1.28 2004/08/29 04:12:53 momjian Exp $
  *
  * NOTE
  *       This should eventually work with elog()
@@ -31,10 +31,10 @@ ExceptionalCondition(char *conditionName,
        if (!PointerIsValid(conditionName)
                || !PointerIsValid(fileName)
                || !PointerIsValid(errorType))
-               fprintf(stderr, "TRAP: ExceptionalCondition: bad arguments\n");
+               write_stderr("TRAP: ExceptionalCondition: bad arguments\n");
        else
        {
-               fprintf(stderr, "TRAP: %s(\"%s\", File: \"%s\", Line: %d)\n",
+               write_stderr("TRAP: %s(\"%s\", File: \"%s\", Line: %d)\n",
                                errorType, conditionName,
                                fileName, lineNumber);
        }