summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/rename.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/rename.c')
-rw-r--r--otherlibs/unix/rename.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/rename.c b/otherlibs/unix/rename.c
index 5a1e32f16..35c3fade3 100644
--- a/otherlibs/unix/rename.c
+++ b/otherlibs/unix/rename.c
@@ -15,8 +15,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_rename(path1, path2) /* ML */
- value path1, path2;
+value unix_rename(value path1, value path2) /* ML */
{
if (rename(String_val(path1), String_val(path2)) == -1)
uerror("rename", path1);