aboutsummaryrefslogtreecommitdiff
path: root/pianoroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'pianoroll.c')
-rw-r--r--pianoroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pianoroll.c b/pianoroll.c
index 8a5269e..560afb9 100644
--- a/pianoroll.c
+++ b/pianoroll.c
@@ -468,7 +468,7 @@ static void pianoroll_save_file(t_pianoroll *x, t_symbol *ffile)
FILE *tmph;
t_int si;
- if ( ( tmph = fopen( ffile->s_name, "w" ) ) == NULL )
+ if ( ( tmph = sys_fopen( ffile->s_name, "w" ) ) == NULL )
{
post( "pianoroll : could not open file : %s for writing", ffile->s_name );
return;
@@ -497,7 +497,7 @@ static void pianoroll_load(t_pianoroll *x, t_symbol *ffile)
FILE *tmph;
t_int si;
- if ( ( tmph = fopen( ffile->s_name, "r" ) ) == NULL )
+ if ( ( tmph = sys_fopen( ffile->s_name, "r" ) ) == NULL )
{
post( "pianoroll : could not open file : %s for reading", ffile->s_name );
return;