From 86d4a80b0069b2be368bfe4af164be5ff72a48b4 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 2 Sep 2008 02:22:28 -0700 Subject: ob_send: avoid void pointer arithmetic warning --- src/outputBuffer_ob_send.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/outputBuffer_ob_send.h b/src/outputBuffer_ob_send.h index d2c99b3f2..310d5f8fd 100644 --- a/src/outputBuffer_ob_send.h +++ b/src/outputBuffer_ob_send.h @@ -122,7 +122,7 @@ ob_send(void *data, size_t len, start_playback(); return dc.action; } - data += c_len; + data = (unsigned char *)data + c_len; } } } -- cgit v1.2.3