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

Commit 8d0e658

Browse files
committed
Small cleanup.
1 parent c4cb617 commit 8d0e658

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/backend/postmaster/postmaster.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.52 1997/08/19 21:32:27 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.53 1997/08/25 04:15:31 momjian Exp $
1414
*
1515
* NOTES
1616
*
@@ -887,10 +887,10 @@ CleanupProc(int pid,
887887
* SIGUSR1 is the special signal that sez exit without exitpg
888888
* and let the user know what's going on. ProcSemaphoreKill()
889889
* cleans up the backends semaphore. If SendStop is set (-s on
890-
* the command line), then we send a SIGSTOP so that we can
891-
* collect core dumps from all backends by hand.
892-
* -----------------
893-
*/
890+
* command line), then we send a SIGSTOP so that we can
891+
* core dumps from all backends by hand.
892+
* -----------------
893+
*/
894894
sig = (SendStop) ? SIGSTOP : SIGUSR1;
895895
if (bp->pid != pid) {
896896
if (DebugLvl)

src/include/c.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: c.h,v 1.15 1997/08/24 23:07:56 momjian Exp $
10+
* $Id: c.h,v 1.16 1997/08/25 04:15:40 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -686,7 +686,7 @@ typedef struct Exception {
686686
* Does string copy, and forces terminating NULL
687687
*/
688688
/* we do this so if the macro is used in an if action, it will work */
689-
#define strNcpy(dst,src,len) (strncpy((dst),(src),(len)),*((dst)+(len))='\0',dst)
689+
#define strNcpy(dst,src,len) (strncpy((dst),(src),(len)),*((dst)+(len))='\0')
690690

691691
/* ----------------------------------------------------------------
692692
* Section 9: externs

0 commit comments

Comments
 (0)