File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1414 *
1515 *
1616 * IDENTIFICATION
17- * $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.51 2004/09/16 20:17:33 tgl Exp $
17+ * $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.52 2004/10/17 23:39:15 momjian Exp $
1818 *
1919 *-------------------------------------------------------------------------
2020 */
@@ -683,4 +683,4 @@ pgport_pfree(void *pointer)
683683 pfree (pointer );
684684}
685685
686- #endif /* WIN32 */
686+ #endif
Original file line number Diff line number Diff line change 1010 * Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
1111 *
1212 * IDENTIFICATION
13- * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.28 2004/10/11 22:50:48 momjian Exp $
13+ * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.29 2004/10/17 23:39:22 momjian Exp $
1414 *
1515 *-------------------------------------------------------------------------
1616 */
@@ -68,7 +68,7 @@ pgrename(const char *from, const char *to)
6868{
6969 int loops = 0 ;
7070
71- /* Is this looped even necessary? */
71+ /* Is this loop even necessary? */
7272#if defined(WIN32 ) && !defined(__CYGWIN__ )
7373 while (!MoveFileEx (from , to , MOVEFILE_REPLACE_EXISTING ))
7474#endif
@@ -114,7 +114,7 @@ pgunlink(const char *path)
114114{
115115 int loops = 0 ;
116116
117- /* Is this looped even necessary? */
117+ /* Is this loop even necessary? */
118118 while (unlink (path ))
119119 {
120120 if (errno != EACCES )
You can’t perform that action at this time.
0 commit comments