diff options
author | Bruce Momjian | 2004-10-07 15:21:58 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-10-07 15:21:58 +0000 |
commit | a5d7ba773dff04d700afca6cf86bff64dc663b4f (patch) | |
tree | b772d1e2f500d927ab2e0d42ba12ec91c6b03769 /contrib/dbase | |
parent | 9da50e1f53f47671f571d75725a093af30bf0623 (diff) |
Adjust comments previously moved to column 1 by pgident.
Diffstat (limited to 'contrib/dbase')
-rw-r--r-- | contrib/dbase/dbf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c index bed75c7fad..4ecb2b0e5a 100644 --- a/contrib/dbase/dbf.c +++ b/contrib/dbase/dbf.c @@ -505,7 +505,7 @@ dbf_put_record(dbhead * dbh, field * rec, u_long where) if (write(dbh->db_fd, data, dbh->db_rlen) != dbh->db_rlen) return DBF_ERROR; -/* There's a 0x1A at the end of a dbf-file */ + /* There's a 0x1A at the end of a dbf-file */ if (where == dbh->db_records) { if (write(dbh->db_fd, &end, 1) != 1) |