From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KmQsz-0003Ec-3M for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:30:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KmQsx-0003Ce-Qq for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:30:48 -0400 Received: from [199.232.76.173] (port=48168 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KmQsx-0003CK-Hn for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:30:47 -0400 Received: from savannah.gnu.org ([199.232.41.3]:60419 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KmQsx-0006Dl-Fz for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:30:47 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KmQsw-0000oX-1c for qemu-devel@nongnu.org; Sun, 05 Oct 2008 10:30:46 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KmQsv-0000oT-7K for qemu-devel@nongnu.org; Sun, 05 Oct 2008 10:30:45 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sun, 05 Oct 2008 10:30:45 +0000 Subject: [Qemu-devel] [5423] Move wav_start_capture prototype to avoid a warning with -Wmissing-prototypes Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5423 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5423 Author: blueswir1 Date: 2008-10-05 10:30:43 +0000 (Sun, 05 Oct 2008) Log Message: ----------- Move wav_start_capture prototype to avoid a warning with -Wmissing-prototypes Modified Paths: -------------- trunk/audio/audio.h trunk/monitor.c Modified: trunk/audio/audio.h =================================================================== --- trunk/audio/audio.h 2008-10-05 10:01:05 UTC (rev 5422) +++ trunk/audio/audio.h 2008-10-05 10:30:43 UTC (rev 5423) @@ -170,4 +170,7 @@ #define audio_MAX(a, b) ((a)<(b)?(b):(a)) #endif +int wav_start_capture (CaptureState *s, const char *path, int freq, + int bits, int nchannels); + #endif /* audio.h */ Modified: trunk/monitor.c =================================================================== --- trunk/monitor.c 2008-10-05 10:01:05 UTC (rev 5422) +++ trunk/monitor.c 2008-10-05 10:30:43 UTC (rev 5423) @@ -1337,9 +1337,6 @@ } #ifdef HAS_AUDIO -int wav_start_capture (CaptureState *s, const char *path, int freq, - int bits, int nchannels); - static void do_wav_capture (const char *path, int has_freq, int freq, int has_bits, int bits,