aboutsummaryrefslogtreecommitdiff
path: root/sys/base/os.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/os.c')
-rw-r--r--sys/base/os.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/base/os.c b/sys/base/os.c
index d5277b5..a76e183 100644
--- a/sys/base/os.c
+++ b/sys/base/os.c
@@ -25,6 +25,6 @@ os·basename(byte *path)
{
byte *sep;
- sep = utf8·findrrune(path, os·sep());
+ sep = strrchr(path, os·sep());
return (sep == nil) ? path : sep+1;
}