diff options
Diffstat (limited to 'Build/source/texk/dvipdfm-x/pdfencoding.c')
-rw-r--r-- | Build/source/texk/dvipdfm-x/pdfencoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvipdfm-x/pdfencoding.c b/Build/source/texk/dvipdfm-x/pdfencoding.c index fd80980f00f..c7bc2722f56 100644 --- a/Build/source/texk/dvipdfm-x/pdfencoding.c +++ b/Build/source/texk/dvipdfm-x/pdfencoding.c @@ -689,7 +689,7 @@ pdf_create_ToUnicode_CMap (const char *enc_name, } } - stream = all_predef ? NULL : CMap_create_stream(cmap, 0); + stream = all_predef ? NULL : CMap_create_stream(cmap); CMap_release(cmap); RELEASE(cmap_name); @@ -723,7 +723,7 @@ pdf_load_ToUnicode_stream (const char *ident) if (verbose) { MESG("(CMap:%s)", ident); } - stream = CMap_create_stream(cmap, 0); + stream = CMap_create_stream(cmap); if (!stream) { WARN("Failed to creat ToUnicode CMap stream for \"%s\".", ident); } |