aboutsummaryrefslogtreecommitdiff
path: root/blinkenlights.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-17 23:15:09 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commit6bf58497fe25026cb7adcdf1a408f24c8ba955e5 (patch)
tree7efefc8281acb05d45b2bb9ffaec674deb4246a2 /blinkenlights.c
parent3597f35314d4d5f1974c9236dcc427bca5adab7e (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/unauthorized/; revision=16902
Diffstat (limited to 'blinkenlights.c')
-rw-r--r--blinkenlights.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blinkenlights.c b/blinkenlights.c
index 65e02a4..1e49474 100644
--- a/blinkenlights.c
+++ b/blinkenlights.c
@@ -758,7 +758,7 @@ static void blinkenlights_open(t_blinkenlights *x, t_symbol *sfile)
//--------------------------------
- if ( ( x->x_filed = fopen( sfile->s_name, "r" ) ) == NULL )
+ if ( ( x->x_filed = sys_fopen( sfile->s_name, "r" ) ) == NULL )
{
error( "blinkenlights : cannot open >%s<", sfile->s_name);
return;