summaryrefslogtreecommitdiffstats
path: root/libhb/enctheora.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/enctheora.c')
-rw-r--r--libhb/enctheora.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/enctheora.c b/libhb/enctheora.c
index 36fd9e98a..d398f7717 100644
--- a/libhb/enctheora.c
+++ b/libhb/enctheora.c
@@ -51,11 +51,11 @@ int enctheoraInit( hb_work_object_t * w, hb_job_t * job )
hb_get_tempory_filename( job->h, filename, "theroa.log" );
if ( job->pass == 1 )
{
- pv->file = fopen( filename, "wb" );
+ pv->file = hb_fopen(filename, "wb");
}
else
{
- pv->file = fopen( filename, "rb" );
+ pv->file = hb_fopen(filename, "rb");
}
}