diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-07-20 16:57:18 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-07-20 16:57:18 +0000 |
| commit | 0da6358f373c2736626b4189a3e7e413e107b9a0 (patch) | |
| tree | 686ef135cf4f3cb094b833f1d754e95e4e7766fd /src/include/libpq/libpq.h | |
| parent | 34797d42253d488423b7a86a4a8335786b65cb59 (diff) | |
| download | postgresql-0da6358f373c2736626b4189a3e7e413e107b9a0.tar.gz | |
Cleanup use of 16 that should be NAMEDATALEN.
Diffstat (limited to 'src/include/libpq/libpq.h')
| -rw-r--r-- | src/include/libpq/libpq.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h index 4b2f95056b..a328e6dacd 100644 --- a/src/include/libpq/libpq.h +++ b/src/include/libpq/libpq.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: libpq.h,v 1.19 1998/07/18 18:34:23 momjian Exp $ + * $Id: libpq.h,v 1.20 1998/07/20 16:57:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -44,7 +44,7 @@ typedef struct * Information about an attribute. * ---------------- */ -#define NameLength 16 +#define NameLength NAMEDATALEN typedef struct TypeBlock { |
