diff options
Diffstat (limited to 'fitz/stm_open.c')
-rw-r--r-- | fitz/stm_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/stm_open.c b/fitz/stm_open.c index f3d78b9d..ffa6de82 100644 --- a/fitz/stm_open.c +++ b/fitz/stm_open.c @@ -141,7 +141,7 @@ fz_open_file_w(fz_context *ctx, const wchar_t *name) { int fd = _wopen(name, O_BINARY | O_RDONLY, 0); if (fd == -1) - fz_throw(ctx, "cannot open file %Ls", name); + fz_throw(ctx, "cannot open file %ls", name); return fz_open_fd(ctx, fd); } #endif |