summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/rmdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/rmdir.c')
-rw-r--r--otherlibs/unix/rmdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/rmdir.c b/otherlibs/unix/rmdir.c
index 49e82b253..dcf5a5493 100644
--- a/otherlibs/unix/rmdir.c
+++ b/otherlibs/unix/rmdir.c
@@ -5,5 +5,5 @@ value unix_rmdir(path) /* ML */
value path;
{
if (rmdir(String_val(path)) == -1) uerror("rmdir", path);
- return Atom(0);
+ return Val_unit;
}