diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-07 21:56:25 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-07 21:56:25 +0000 |
commit | 2dd7ab062793c89419bb6a49e3f5c3f6120e830f (patch) | |
tree | 1554f169b367565b4efc5537352b2d0fe2603c4c | |
parent | 2dc7c88c2ec277ea3b1e816a6eaf048b78d35b90 (diff) | |
download | postgresql-2dd7ab062793c89419bb6a49e3f5c3f6120e830f.tar.gz postgresql-2dd7ab062793c89419bb6a49e3f5c3f6120e830f.zip |
Put back another improperly-removed #include.
-rw-r--r-- | src/backend/storage/lmgr/lwlock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index e45855a0e40..28c73a8a9b6 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.44 2006/08/04 16:42:56 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/storage/lmgr/lwlock.c,v 1.45 2006/08/07 21:56:25 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -25,6 +25,7 @@ #include "access/multixact.h" #include "access/subtrans.h" #include "miscadmin.h" +#include "storage/ipc.h" #include "storage/proc.h" #include "storage/spin.h" |