diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-01-15 02:59:43 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-01-15 02:59:43 +0000 |
commit | 1cd4c141167131f0739a654c6f703fc1a5154f0f (patch) | |
tree | 2459cd9f0bc38d80b6038a877603af9ae3fdb988 /src/backend/utils/adt/nabstime.c | |
parent | 7c9390caa14ea2d5d99d69d2a34eee4d45d43b9c (diff) |
Fixed all elog related warnings, as well as a few others.
Diffstat (limited to 'src/backend/utils/adt/nabstime.c')
-rw-r--r-- | src/backend/utils/adt/nabstime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/nabstime.c b/src/backend/utils/adt/nabstime.c index 1b57d70c91b..e2ad623a470 100644 --- a/src/backend/utils/adt/nabstime.c +++ b/src/backend/utils/adt/nabstime.c @@ -4,7 +4,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nabstime.c,v 1.63 2000/01/02 01:37:27 momjian Exp $ + * $Id: nabstime.c,v 1.64 2000/01/15 02:59:38 petere Exp $ * */ #include <ctype.h> @@ -265,7 +265,7 @@ nabstimein(char *str) ftype[MAXDATEFIELDS]; if (!PointerIsValid(str)) - elog(ERROR, "Bad (null) abstime external representation", NULL); + elog(ERROR, "Bad (null) abstime external representation"); if (strlen(str) > MAXDATELEN) elog(ERROR, "Bad (length) abstime external representation '%s'", str); @@ -552,7 +552,7 @@ abstime_datetime(AbsoluteTime abstime) DateTime *result; if (!PointerIsValid(result = palloc(sizeof(DateTime)))) - elog(ERROR, "Unable to allocate space to convert abstime to datetime", NULL); + elog(ERROR, "Unable to allocate space to convert abstime to datetime"); switch (abstime) { |