aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-03-12 21:00:17 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-03-12 21:00:17 +0000
commitb66569e41fdecab3903fd8af6cbc8bb12ae653cd (patch)
treec5b8126c45e6779c5e14f7efa0bfb93652c135d4 /src/backend/bootstrap/bootstrap.c
parent127826978a2c5ea25b20d7f06687609669323ab1 (diff)
downloadpostgresql-b66569e41fdecab3903fd8af6cbc8bb12ae653cd.tar.gz
postgresql-b66569e41fdecab3903fd8af6cbc8bb12ae653cd.zip
From: Dan McGuirk <mcguirk@indirect.com>
Subject: [HACKERS] linux/alpha patches These patches lay the groundwork for a Linux/Alpha port. The port doesn't actually work unless you tweak the linker to put all the pointers in the first 32 bits of the address space, but it's at least a start. It implements the test-and-set instruction in Alpha assembly, and also fixes a lot of pointer-to-integer conversions, which is probably good anyway.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r--src/backend/bootstrap/bootstrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 2c4f8104958..36da3f6b47f 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.15 1997/01/24 22:42:30 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.16 1997/03/12 20:57:33 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -485,7 +485,7 @@ boot_openrel(char *relname)
if (!Quiet)
printf("Amopen: relation %s. attrsize %d\n", relname,
- ATTRIBUTE_TUPLE_SIZE);
+ (int)ATTRIBUTE_TUPLE_SIZE);
reldesc = heap_openr(relname);
Assert(reldesc);