Fix some typos.
authorBruce Momjian
Sun, 17 Oct 2004 23:39:22 +0000 (23:39 +0000)
committerBruce Momjian
Sun, 17 Oct 2004 23:39:22 +0000 (23:39 +0000)
src/backend/utils/mmgr/mcxt.c
src/port/dirmod.c

index 581c7f396d8c782dcbc1d52926813a5c8b4ab02f..d1fa334c454d2e6325d933289a1c2d80a82ef9e9 100644 (file)
@@ -14,7 +14,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.51 2004/09/16 20:17:33 tgl Exp $
+ *   $PostgreSQL: pgsql/src/backend/utils/mmgr/mcxt.c,v 1.52 2004/10/17 23:39:15 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -683,4 +683,4 @@ pgport_pfree(void *pointer)
    pfree(pointer);
 }
 
-#endif /* WIN32 */
+#endif
index ca90f0263d1ef8493adf2e44a366004f593ddbf2..5bb53f08c8ed2919d26df4f47165592481d507cf 100644 (file)
@@ -10,7 +10,7 @@
  * Win32 (NT, Win2k, XP).  replace() doesn't work on Win95/98/Me.
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/port/dirmod.c,v 1.28 2004/10/11 22:50:48 momjian Exp $
+ *   $PostgreSQL: pgsql/src/port/dirmod.c,v 1.29 2004/10/17 23:39:22 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -68,7 +68,7 @@ pgrename(const char *from, const char *to)
 {
    int         loops = 0;
 
-   /* Is this looped even necessary?  */
+   /* Is this loop even necessary?  */
 #if defined(WIN32) && !defined(__CYGWIN__)
    while (!MoveFileEx(from, to, MOVEFILE_REPLACE_EXISTING))
 #endif
@@ -114,7 +114,7 @@ pgunlink(const char *path)
 {
    int         loops = 0;
 
-   /* Is this looped even necessary?  */
+   /* Is this loop even necessary?  */
    while (unlink(path))
    {
        if (errno != EACCES)