Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cbf8319

Browse files
committed
Two spaces after a colon.
1 parent 2913d65 commit cbf8319

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/backend/utils/error/elog.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.32 1998/08/25 21:34:08 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.33 1998/08/31 04:48:36 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -91,24 +91,24 @@ elog(int lev, const char *fmt,...)
9191
i = 0;
9292
if (i > 30)
9393
i = i % 30;
94-
cp = "DEBUG: ";
94+
cp = "DEBUG: ";
9595
break;
9696
case DEBUG:
9797
i = ElogDebugIndentLevel;
9898
if (i < 0)
9999
i = 0;
100100
if (i > 30)
101101
i = i % 30;
102-
cp = "DEBUG: ";
102+
cp = "DEBUG: ";
103103
break;
104104
case NOTICE:
105-
cp = "NOTICE: ";
105+
cp = "NOTICE: ";
106106
break;
107107
case ERROR:
108-
cp = "ERROR: ";
108+
cp = "ERROR: ";
109109
break;
110110
default:
111-
sprintf(line, "FATAL %d: ", lev);
111+
sprintf(line, "FATAL %d: ", lev);
112112
cp = line;
113113
}
114114
#ifdef ELOG_TIMESTAMPS

0 commit comments

Comments
 (0)