~ chicken-core (chicken-5) cf1e956b494ffdb2e1454fb1d3234e841ba23bdd
commit cf1e956b494ffdb2e1454fb1d3234e841ba23bdd
Author: Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Wed Sep 14 20:42:28 2022 +0200
Commit: Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Wed Sep 14 20:42:31 2022 +0200
posixunix: fix typo in error message of create-symbolic-link
Reported by Matt Welland:
https://lists.gnu.org/archive/html/chicken-users/2022-09/msg00009.html
diff --git a/posixunix.scm b/posixunix.scm
index de592f77..213f7492 100644
--- a/posixunix.scm
+++ b/posixunix.scm
@@ -730,7 +730,7 @@ static int set_file_mtime(char *filename, C_word atime, C_word mtime)
(##sys#make-c-string old 'create-symbolic-link)
(##sys#make-c-string new 'create-symbolic-link) )
0)
- (posix-error #:file-error 'create-symbol-link "cannot create symbolic link" old new) ) ) )
+ (posix-error #:file-error 'create-symbolic-link "cannot create symbolic link" old new) ) ) )
(define-foreign-variable _filename_max int "FILENAME_MAX")
Trap