# HG changeset patch
# User crestani
# Date 1130925718 0
# Node ID d00888bfced1b303e269afd37d205e550484395f
# Parent  bceaa7825d9dfd2b203ad84617d238791a442a31
[xemacs-hg @ 2005-11-02 10:01:57 by crestani]
* realpath.c (readlink_or_correct_case): Move the closing paren
outside the ifdef.

diff -r bceaa7825d9d -r d00888bfced1 src/ChangeLog
--- a/src/ChangeLog	Wed Nov 02 03:33:17 2005 +0000
+++ b/src/ChangeLog	Wed Nov 02 10:01:58 2005 +0000
@@ -1,3 +1,8 @@
+2005-11-02  Marcus Crestani  <crestani@xemacs.org>
+
+	* realpath.c (readlink_or_correct_case): Move the closing paren
+	outside the ifdef.
+
 2005-11-02  Marcus Crestani  <crestani@xemacs.org>
 
 	* realpath.c (readlink_or_correct_case): Mark parameter as unused.
diff -r bceaa7825d9d -r d00888bfced1 src/realpath.c
--- a/src/realpath.c	Wed Nov 02 03:33:17 2005 +0000
+++ b/src/realpath.c	Wed Nov 02 10:01:58 2005 +0000
@@ -81,10 +81,11 @@
 static int
 readlink_or_correct_case (const Ibyte *name, Ibyte *buf, Bytecount size,
 #ifndef WIN32_ANY
-			  Boolint UNUSED (links_only))
+			  Boolint UNUSED (links_only)
 #else
-			  Boolint links_only)
+			  Boolint links_only
 #endif
+			  )
 {
 #ifndef WIN32_ANY
   return qxe_readlink (name, buf, (size_t) size);