From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9042 invoked by alias); 18 Aug 2008 16:37:27 -0000 Received: (qmail 9026 invoked by uid 22791); 18 Aug 2008 16:37:27 -0000 X-Spam-Check-By: sourceware.org Received: from smtp805.mail.ird.yahoo.com (HELO smtp805.mail.ird.yahoo.com) (217.146.188.65) by sourceware.org (qpsmtpd/0.31) with SMTP; Mon, 18 Aug 2008 16:36:23 +0000 Received: (qmail 27094 invoked from network); 18 Aug 2008 16:36:21 -0000 Received: from unknown (HELO orthanc.middle-earth.co.uk) (hughes2002@btinternet.com@81.152.162.8 with plain) by smtp805.mail.ird.yahoo.com with SMTP; 18 Aug 2008 16:36:20 -0000 X-YMail-OSG: ZAGI6ZUVM1nmal9JyxvLeEldZPcpScqVKwA7FIbYCNqKzwxTKeoC7fZ8Yn2K4ZqnGyoz_Wj91W4MN5C8Pl_esLvU1Mz30E0AOjfs95137FplUd851xzbPKp1gRGS7jUPtna5QqDwxIqYq5a0XtHABL3V X-Yahoo-Newman-Property: ymail-3 Received: from rivendell.middle-earth.co.uk ([192.168.0.1]) by orthanc.middle-earth.co.uk with smtp (Exim 4.63) (envelope-from ) id 1KV7iN-0001Sj-Ql; Mon, 18 Aug 2008 17:36:19 +0100 Received: by rivendell.middle-earth.co.uk (sSMTP sendmail emulation); Mon, 18 Aug 2008 17:36:19 +0100 Date: Mon, 18 Aug 2008 16:47:00 -0000 From: Andrew John Hughes To: classpath-patches@gnu.org Cc: java-patches@gcc.gnu.org Subject: FYI: Fix typo in gst_native_pipeline.c Message-ID: <20080818163619.GA2193@rivendell.middle-earth.co.uk> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2fHTh5uZTiUOsy+g" Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-09) X-IsSubscribed: yes Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org X-SW-Source: 2008-q3/txt/msg00035.txt.bz2 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 538 Compiling the GStreamer peer as part of GCJ spotted the following typo: ChangeLog: 2008-08-18 Andrew John Hughes * native/jni/gstreamer-peer/gst_native_pipeline.c: (get_free_space(int)): Use #else not #elif when there is no condition. Okay for GCJ too? -- Andrew :) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gstreamer-02.diff" Content-length: 614 Index: native/jni/gstreamer-peer/gst_native_pipeline.c =================================================================== RCS file: /sources/classpath/classpath/native/jni/gstreamer-peer/gst_native_pipeline.c,v retrieving revision 1.3 diff -u -u -r1.3 gst_native_pipeline.c --- native/jni/gstreamer-peer/gst_native_pipeline.c 27 Sep 2007 19:22:01 -0000 1.3 +++ native/jni/gstreamer-peer/gst_native_pipeline.c 18 Aug 2008 15:29:27 -0000 @@ -509,7 +509,7 @@ result = GST_DETECTED_PIPE_CAPACITY - result; -#elif +#else g_warning("IMPLEMENT ME!!! - !defined (FIONSPACE), !defined (FIONREAD"); #endif --2fHTh5uZTiUOsy+g--