summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-08-18 16:36:55 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-08-18 16:36:55 +0000
commit920656d01103a8ba7482ce9db1f2de56a4658635 (patch)
treee7f5012e009acba1b9db3e059a9b52f5880b13ab
parentab84ce22466b9cfa8224ef402ab89964ebe1e118 (diff)
downloadclasspath-920656d01103a8ba7482ce9db1f2de56a4658635.tar.gz
Fix GStreamer peer typo.
2008-08-18 Andrew John Hughes <gnu_andrew@member.fsf.org> * native/jni/gstreamer-peer/gst_native_pipeline.c: (get_free_space(int)): Use #else not #elif when there is no condition.
-rw-r--r--ChangeLog6
-rw-r--r--native/jni/gstreamer-peer/gst_native_pipeline.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 38d36c745..e82f809cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-18 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
+ * native/jni/gstreamer-peer/gst_native_pipeline.c:
+ (get_free_space(int)): Use #else not #elif when
+ there is no condition.
+
2008-08-17 Andrew John Hughes <gnu_andrew@member.fsf.org>
PR classpath/31895:
diff --git a/native/jni/gstreamer-peer/gst_native_pipeline.c b/native/jni/gstreamer-peer/gst_native_pipeline.c
index 3e3256897..e0caa4775 100644
--- a/native/jni/gstreamer-peer/gst_native_pipeline.c
+++ b/native/jni/gstreamer-peer/gst_native_pipeline.c
@@ -509,7 +509,7 @@ static jint get_free_space (int fd)
result = GST_DETECTED_PIPE_CAPACITY - result;
-#elif
+#else
g_warning("IMPLEMENT ME!!! - !defined (FIONSPACE), !defined (FIONREAD");
#endif