diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2008-08-17 14:44:44 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2008-08-17 14:44:44 +0100 |
commit | e3b6a0c89a814ce469bee8f5e186c318a41004fb (patch) | |
tree | 0adadcd3ab975e4fc1caab4d9091b91253a5c032 /src/cairo-output-stream.c | |
parent | 4517ef05200a11115c59acef9a20163544e69409 (diff) |
[cairo-output-stream] Dead store.
Value stored to 'p' is never read.
Diffstat (limited to 'src/cairo-output-stream.c')
-rw-r--r-- | src/cairo-output-stream.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cairo-output-stream.c b/src/cairo-output-stream.c index e2fffb28..5041f757 100644 --- a/src/cairo-output-stream.c +++ b/src/cairo-output-stream.c @@ -423,7 +423,6 @@ _cairo_output_stream_vprintf (cairo_output_stream_t *stream, /* Flush contents of buffer before snprintf()'ing into it. */ _cairo_output_stream_write (stream, buffer, p - buffer); - p = buffer; /* We group signed and unsigned together in this switch, the * only thing that matters here is the size of the arguments, |