~ chicken-core (master) 0f952c84f943658489a9c8d15277e3416de510cb


commit 0f952c84f943658489a9c8d15277e3416de510cb
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Wed Feb 4 10:39:02 2026 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Wed Feb 4 10:39:02 2026 +0100

    typo (reported by jrapdx)

diff --git a/file.scm b/file.scm
index f6992f0a..9211359f 100644
--- a/file.scm
+++ b/file.scm
@@ -108,7 +108,7 @@ static C_word C_u_i_lstat(C_word path)
     return C_fix(buf.st_mode);
 #else
   struct _stat buf;
-  if(_wstat(C_utf16(C_utf16(path, 0), &buf) == 0)
+  if(_wstat(C_utf16(path, 0), &buf) == 0)
     return C_SCHEME_TRUE;
 #endif
   return C_SCHEME_FALSE;
Trap