diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-22 04:01:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-22 04:01:46 +0000 |
commit | 9e1552607a9dc6bc23e43d46770a9063ade4f3f0 (patch) | |
tree | 6a230d81917ebc004e40cd46c48f2aa27eec153e /src/bin/psql/copy.c | |
parent | 6cf8707b828b14b5c2336076ce358b18b67829d6 (diff) |
pgindent run. Make it all clean.
Diffstat (limited to 'src/bin/psql/copy.c')
-rw-r--r-- | src/bin/psql/copy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index 5ea17a8ab80..d89d7bec360 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.17 2001/02/10 02:31:28 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.18 2001/03/22 04:00:19 momjian Exp $ */ #include "postgres_fe.h" #include "copy.h" @@ -80,7 +80,7 @@ parse_slash_copy(const char *args) { psql_error("\\copy: arguments required\n"); return NULL; - } + } if (!(result = calloc(1, sizeof(struct copy_options)))) { @@ -403,7 +403,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, const char *prompt) int bufleft; int c = 0; int ret; - unsigned int linecount=0; + unsigned int linecount = 0; #ifdef USE_ASSERT_CHECKING assert(copy_in_state); |