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

Commit 37e7c7d

Browse files
committed
Fix assert with missing semicolon
1 parent 50b10b8 commit 37e7c7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/storage/ipc/spin.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.22 2000/01/26 05:56:58 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.23 2000/04/12 04:58:09 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -209,7 +209,7 @@ SpinAcquire(SPINLOCK lock)
209209
void
210210
SpinRelease(SPINLOCK lock)
211211
{
212-
Assert(SpinIsLocked(lock))
212+
Assert(SpinIsLocked(lock));
213213
PROC_DECR_SLOCK(lock);
214214
IpcSemaphoreUnlock(SpinLockId, lock, IpcExclusiveLock);
215215
}

0 commit comments

Comments
 (0)