diff options
author | Bruce Momjian | 2010-01-06 02:41:37 +0000 |
---|---|---|
committer | Bruce Momjian | 2010-01-06 02:41:37 +0000 |
commit | 8cdb85b51232c6cdc0a1461d98bc6d46e6ce60c1 (patch) | |
tree | 3fcf65b26c25f23da9f2fa9f7bddf435e9bd7b37 /src | |
parent | 5c82ccb1ddfc34d18de849cf6e5b2482887a87e2 (diff) |
Remove tabs in SGML.
Move OIDCHARS to proper include file.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/catalog.c | 3 | ||||
-rw-r--r-- | src/include/catalog/catalog.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 0d64d91b829..f433f531460 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.85 2010/01/02 16:57:36 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.86 2010/01/06 02:41:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -43,7 +43,6 @@ #include "utils/tqual.h" -#define OIDCHARS 10 /* max chars printed by %u */ #define FORKNAMECHARS 4 /* max chars for a fork name */ /* diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 4a211bca9ab..ff633a7b984 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.45 2010/01/02 16:58:01 momjian Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.46 2010/01/06 02:41:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,6 +18,7 @@ #include "storage/relfilenode.h" #include "utils/relcache.h" +#define OIDCHARS 10 /* max chars printed by %u */ extern const char *forkNames[]; extern ForkNumber forkname_to_number(char *forkName); |