aboutsummaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-17 23:07:14 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-17 23:07:14 +0000
commit5f7ec0f37d78a8138f2eb93998a064fadb956ae1 (patch)
treeff9955bee08a7949ed2d34081ab1fb88e7eff4a2 /proc.c
parentcffbfad57fe38079b3fc34dea59c45a608568bc8 (diff)
replace POSIX fopen() with Pd's new sys_fopen() to get cross-platform unicode filename support (Pd-extended 0.43.4/Pd-vanilla 0.44)
svn path=/trunk/externals/cxc/; revision=16900
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proc.c b/proc.c
index 1bb633c..ed7039b 100644
--- a/proc.c
+++ b/proc.c
@@ -57,7 +57,7 @@ void proc_cpuinfo(t_proc *x)
restf = 0;
ac = 0;
- fp = fopen(name,"r");
+ fp = sys_fopen(name,"r");
if (!fp) {
post("cxc/proc.c: unable to open %s",name);
return;
@@ -121,7 +121,7 @@ void proc_proc(t_proc *x, t_symbol *s)
restf = 0;
ac = 0;
- fp = fopen(name,"r");
+ fp = sys_fopen(name,"r");
if (!fp) {
post("cxc/proc.c: unable to open %s",name);
return;