diff options
Diffstat (limited to 'src/backend/storage/file/fd.c')
-rw-r--r-- | src/backend/storage/file/fd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 04cdd95a699..a594b16edf3 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.129 2006/08/24 03:15:43 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/storage/file/fd.c,v 1.130 2006/10/04 00:29:57 momjian Exp $ * * NOTES: * @@ -1026,7 +1026,7 @@ retry: * in which case immediate retry is indicated. */ #ifdef WIN32 - DWORD error = GetLastError(); + DWORD error = GetLastError(); switch (error) { @@ -1081,7 +1081,7 @@ retry: * See comments in FileRead() */ #ifdef WIN32 - DWORD error = GetLastError(); + DWORD error = GetLastError(); switch (error) { @@ -1279,8 +1279,8 @@ TryAgain: } /* - * TEMPORARY hack to log the Windows error code on fopen failures, - * in hopes of diagnosing some hard-to-reproduce problems. + * TEMPORARY hack to log the Windows error code on fopen failures, in + * hopes of diagnosing some hard-to-reproduce problems. */ #ifdef WIN32 { |