mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 13:52:16 -08:00
Fixed typo in the order of errors when building DELETE-FILE.
This commit is contained in:
parent
08594e60a9
commit
e2ae310e2c
1 changed files with 2 additions and 2 deletions
|
|
@ -596,8 +596,8 @@ cl_delete_file(cl_object file)
|
|||
if (ok < 0) {
|
||||
const char *msg =
|
||||
isdir?
|
||||
"Cannot delete the file ~S.~%C library error: ~S" :
|
||||
"Cannot delete the directory ~S.~%C library error: ~S";
|
||||
"Cannot delete the directory ~S.~%C library error: ~S" :
|
||||
"Cannot delete the file ~S.~%C library error: ~S";
|
||||
cl_object c_error = _ecl_strerror(errno);
|
||||
si_signal_simple_error
|
||||
(6, @'file-error', /* condition */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue