summaryrefslogtreecommitdiff
path: root/fitz/stm_open.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2011-09-21 17:29:51 +0200
committerTor Andersson <tor.andersson@artifex.com>2011-09-21 17:29:51 +0200
commitf783c31203be2dbd7a28c89557014f97a367bec9 (patch)
tree8faea8d21fa44b99226af34a13f33c6a0e1f7182 /fitz/stm_open.c
parentaa7668835afffd5a2a496a60ed6edb672f5af1a7 (diff)
downloadmupdf-f783c31203be2dbd7a28c89557014f97a367bec9.tar.xz
Add warning context.
Diffstat (limited to 'fitz/stm_open.c')
-rw-r--r--fitz/stm_open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/stm_open.c b/fitz/stm_open.c
index f06bdc50..18079f4b 100644
--- a/fitz/stm_open.c
+++ b/fitz/stm_open.c
@@ -64,7 +64,7 @@ static void seek_file(fz_stream *stm, int offset, int whence)
{
int n = lseek(*(int*)stm->state, offset, whence);
if (n < 0)
- fz_warn("cannot lseek: %s", strerror(errno));
+ fz_warn(stm->ctx, "cannot lseek: %s", strerror(errno));
stm->pos = n;
stm->rp = stm->bp;
stm->wp = stm->bp;
@@ -74,7 +74,7 @@ static void close_file(fz_stream *stm)
{
int n = close(*(int*)stm->state);
if (n < 0)
- fz_warn("close error: %s", strerror(errno));
+ fz_warn(stm->ctx, "close error: %s", strerror(errno));
fz_free(stm->ctx, stm->state);
}