summaryrefslogtreecommitdiff
path: root/contrib/dbase
diff options
context:
space:
mode:
authorBruce Momjian2004-10-07 15:21:58 +0000
committerBruce Momjian2004-10-07 15:21:58 +0000
commita5d7ba773dff04d700afca6cf86bff64dc663b4f (patch)
treeb772d1e2f500d927ab2e0d42ba12ec91c6b03769 /contrib/dbase
parent9da50e1f53f47671f571d75725a093af30bf0623 (diff)
Adjust comments previously moved to column 1 by pgident.
Diffstat (limited to 'contrib/dbase')
-rw-r--r--contrib/dbase/dbf.c2
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)