diff options
author | jstebbins <[email protected]> | 2013-09-22 17:19:38 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-09-22 17:19:38 +0000 |
commit | 5e712218d8eb3f71a06356ed6f952b86ca947fca (patch) | |
tree | cd20ec0c7f22a94c11594deb195c7ec939dee4d1 /test/parsecsv.c | |
parent | 10fda25f44d362349694a42127e8ba4974a4a6ad (diff) |
libhb: make libhb internal character code utf8
This makes libhb expect all strings passed to it to be in utf8 format.
The cli converts the converts from the current code page to utf8. libhb
converts back to the current code page when necessary for libraries that
expect it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5798 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/parsecsv.c')
-rw-r--r-- | test/parsecsv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parsecsv.c b/test/parsecsv.c index 8b287d08b..a1fdc360d 100644 --- a/test/parsecsv.c +++ b/test/parsecsv.c @@ -47,7 +47,7 @@ hb_csv_file_t *hb_open_csv_file( const char *filepath ) return file; } - fileref = fopen( filepath, "r" ); + fileref = hb_fopen(filepath, "r"); if( fileref == NULL ) { return file; |