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

Commit 3467758

Browse files
committed
Fix missing 'static' keywords --- some compilers gripe about this.
1 parent a7d400a commit 3467758

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/storage/lmgr/lwlock.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Portions Copyright (c) 1994, Regents of the University of California
1616
*
1717
* IDENTIFICATION
18-
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.43 2006/08/01 19:03:11 momjian Exp $
18+
* $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.44 2006/08/04 16:42:56 tgl Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -127,7 +127,7 @@ RegisterAddinLWLock(LWLockId *lock)
127127
/*
128128
* NumAddinLWLocks() --- Return the number of LWLocks requested by add-ins.
129129
*/
130-
int
130+
static int
131131
NumAddinLWLocks()
132132
{
133133
return num_addin_locks;
@@ -136,7 +136,7 @@ NumAddinLWLocks()
136136
/*
137137
* AssignAddinLWLocks() --- Assign LWLocks previously requested by add-ins.
138138
*/
139-
void
139+
static void
140140
AssignAddinLWLocks()
141141
{
142142
LWLockNode *node = addin_locks;

0 commit comments

Comments
 (0)