summaryrefslogtreecommitdiff
path: root/src/stdio/rename.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/rename.c')
-rw-r--r--src/stdio/rename.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/rename.c b/src/stdio/rename.c
index 43500cf3..d213707b 100644
--- a/src/stdio/rename.c
+++ b/src/stdio/rename.c
@@ -5,7 +5,7 @@
/** rename a file **/
int rename(const char *old, const char *new)
{
- SYSCALL_NUMBER(sc, "rename", -1);
+ SYSCALL_NUMBER(sc, rename, -1);
int err = 0;
err = __syscall(sc, old, new);