From d740f34f84a830ff18c845103731a1a5a52fc1af Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 15 Aug 2011 20:15:05 +0200 Subject: [PATCH 1/1] ogg_afh: Kill dead store. ogg_afh.c:108:3: warning: Value stored to 'ret' is never read ret = -E_OGG_PACKET_IN; ^ ~~~~~~~~~~~~~~~~ --- ogg_afh.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ogg_afh.c b/ogg_afh.c index 46c7b084..08023458 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -105,7 +105,6 @@ static int vorbis_get_header_callback(ogg_packet *packet, int packet_num, return 0; if (packet_num == 0) { ogg_stream_init(&vghd->os, serial); - ret = -E_OGG_PACKET_IN; ret = ogg_stream_packetin(&vghd->os, packet); if (ret < 0) goto out; -- 2.39.2