diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-13 01:27:21 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-13 01:27:21 +0000 |
commit | 5bd4485c8e4fd1a198af7bd7f254d5ea2330a886 (patch) | |
tree | 8013c02defa15cb8e371e5398b5a0a03e9be789e | |
parent | 1508feb28360c20074bd77a8ea69c0cfff10bd78 (diff) | |
download | postgresql-5bd4485c8e4fd1a198af7bd7f254d5ea2330a886.tar.gz postgresql-5bd4485c8e4fd1a198af7bd7f254d5ea2330a886.zip |
More code cleanups
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
-rw-r--r-- | src/backend/utils/elog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/elog.h b/src/backend/utils/elog.h index bf858fc7ad3..13bcefcfa7e 100644 --- a/src/backend/utils/elog.h +++ b/src/backend/utils/elog.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.1.1.1 1996/07/09 06:22:01 scrappy Exp $ + * $Id: elog.h,v 1.2 1996/08/13 01:27:21 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -33,6 +33,6 @@ /* uncomment the following if you want your elog's to be timestamped */ /* #define ELOG_TIMESTAMPS */ -extern void elog(int lev, char *fmt, ...); +extern void elog(int lev, const char *fmt, ...); #endif /* ELOG_H */ |