1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Ye-old pgindent run. Same 4-space tabs.

This commit is contained in:
Bruce Momjian
2000-04-12 17:17:23 +00:00
parent db4518729d
commit 52f77df613
434 changed files with 24799 additions and 21246 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.57 2000/03/24 02:41:46 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.58 2000/04/12 17:15:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -682,9 +682,9 @@ byteaGetBit(bytea *v, int32 n)
len = VARSIZE(v) - VARHDRSZ;
if (n < 0 || n >= len*8)
if (n < 0 || n >= len * 8)
elog(ERROR, "byteaGetBit: index %d out of range [0..%d]",
n, len*8 - 1);
n, len * 8 - 1);
byteNo = n / 8;
bitNo = n % 8;
@ -757,9 +757,9 @@ byteaSetBit(bytea *v, int32 n, int32 newBit)
len = VARSIZE(v) - VARHDRSZ;
if (n < 0 || n >= len*8)
if (n < 0 || n >= len * 8)
elog(ERROR, "byteaSetBit: index %d out of range [0..%d]",
n, len*8 - 1);
n, len * 8 - 1);
byteNo = n / 8;
bitNo = n % 8;