aboutsummaryrefslogtreecommitdiff
path: root/cyclone/hammer/seq.c
diff options
context:
space:
mode:
Diffstat (limited to 'cyclone/hammer/seq.c')
-rw-r--r--cyclone/hammer/seq.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cyclone/hammer/seq.c b/cyclone/hammer/seq.c
index ce8c0a4..fd5688d 100644
--- a/cyclone/hammer/seq.c
+++ b/cyclone/hammer/seq.c
@@ -1017,9 +1017,7 @@ static void seq_doread(t_seq *x, t_symbol *fn, int creation)
/* loading during object creation -- CHECKED no warning if a file
specified with an arg does not exist, LATER rethink */
FILE *fp;
- char path[MAXPDSTRING];
- sys_bashfilename(buf, path);
- if (!(fp = fopen(path, "r")))
+ if (!(fp = sys_fopen(buf, "r")))
return;
fclose(fp);
}