summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2024-01-30 11:30:06 +0000
committerrodri <rgl@antares-labs.eu>2024-01-30 11:30:06 +0000
commit1a6a53ff7c3964604e2e41c0961aef4736ffb98a (patch)
tree83407c5386053c89873cf7f2d1fb56d3657282d3
parentd9fc92f3d11360bbce2a5c853bfe21d5f76aaf1c (diff)
downloadtinyrend-front.tar.gz
tinyrend-front.tar.bz2
tinyrend-front.zip
fix little typo.HEADfront
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 6d21d07..4b95d4b 100644
--- a/main.c
+++ b/main.c
@@ -883,7 +883,7 @@ threadmain(int argc, char *argv[])
if((model = objparse(mdlpath)) == nil)
sysfatal("objparse: %r");
if(texpath != nil){
- if((p = strrchr(texpath, '\\')) == nil)
+ if((p = strrchr(texpath, '/')) == nil)
p = texpath;
p = strchr(p, '.');
if(p == nil)