diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-06-19 14:49:38 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-06-19 14:49:38 +0100 |
commit | f18dc92eb8014b335afdb720a8f5bc9c3bd7ceb7 (patch) | |
tree | 273577c217277bf3be2d9e8ae4224c3d5a401c39 /fitz/fitz-internal.h | |
parent | 6553b7d94d94c9adc1201c6cdf6532fe65b9e63d (diff) | |
download | mupdf-f18dc92eb8014b335afdb720a8f5bc9c3bd7ceb7.tar.xz |
Avoid lots of const warnings.
Add/Remove a few consts to pacify MSVC.
Diffstat (limited to 'fitz/fitz-internal.h')
-rw-r--r-- | fitz/fitz-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/fitz-internal.h b/fitz/fitz-internal.h index 0f413893..82b1a141 100644 --- a/fitz/fitz-internal.h +++ b/fitz/fitz-internal.h @@ -434,7 +434,7 @@ void fz_write_buffer_pad(fz_context *ctx, fz_buffer *buf); grow, but the caller must ensure that no more than 256 bytes are added to the buffer per call. */ -void fz_buffer_printf(fz_context *ctx, fz_buffer *buffer, char *fmt, ...); +void fz_buffer_printf(fz_context *ctx, fz_buffer *buffer, const char *fmt, ...); struct fz_stream_s { |