diff options
Diffstat (limited to 'otherlibs/unix/rename.c')
-rw-r--r-- | otherlibs/unix/rename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/rename.c b/otherlibs/unix/rename.c index 76b6e3f6e..b6cc1e21d 100644 --- a/otherlibs/unix/rename.c +++ b/otherlibs/unix/rename.c @@ -6,5 +6,5 @@ value unix_rename(path1, path2) /* ML */ { if (rename(String_val(path1), String_val(path2)) == -1) uerror("rename", path1); - return Atom(0); + return Val_unit; } |