sys/oss4/: Fix arguments format in debug statements.
authorJulien Moutte <julien@moutte.net>
Fri, 11 Apr 2008 08:13:22 +0000 (08:13 +0000)
committerJulien Moutte <julien@moutte.net>
Fri, 11 Apr 2008 08:13:22 +0000 (08:13 +0000)
Original commit message from CVS:
2008-04-11  Julien Moutte  <julien@fluendo.com>

* sys/oss4/oss4-mixer-enum.c:
(gst_oss4_mixer_enum_get_values_locked):
* sys/oss4/oss4-source.c: (gst_oss4_source_delay): Fix arguments
format in debug statements.

ChangeLog
sys/oss4/oss4-mixer-enum.c
sys/oss4/oss4-source.c

index dca7c84e4c7e57ff30f114d662f038d75e843ed7..98ecf64f2f1d81321f9985dd17dce72cf91909c1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-04-11  Julien Moutte  <julien@fluendo.com>
+
+       * sys/oss4/oss4-mixer-enum.c:
+       (gst_oss4_mixer_enum_get_values_locked):
+       * sys/oss4/oss4-source.c: (gst_oss4_source_delay): Fix arguments
+       format in debug statements.
+
 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
 
        Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
index edd0d7bb838597a649204eb271bf4d9c1669457d..4b64bb1fc47e1f52542b9dc6259ac7ab5f1e9d8d 100644 (file)
@@ -84,14 +84,14 @@ gst_oss4_mixer_enum_get_values_locked (GstMixerOptions * options)
   GST_LOG_OBJECT (e, "updating available values for %s", e->mc->mixext.extname);
 
   for (i = 0; i < e->mc->mixext.maxvalue; ++i) {
-    if (MIXEXT_ENUM_IS_AVAILABLE (e->mc->mixext, i)) {
-      const gchar *s;
+    const gchar *s;
 
-      s = g_quark_to_string (e->mc->enum_vals[i]);
+    s = g_quark_to_string (e->mc->enum_vals[i]);
+    if (MIXEXT_ENUM_IS_AVAILABLE (e->mc->mixext, i)) {
       GST_LOG_OBJECT (e, "option '%s' is available", s);
       list = g_list_prepend (list, (gpointer) s);
     } else {
-      GST_LOG_OBJECT (e, "option '%s' is currently not available");
+      GST_LOG_OBJECT (e, "option '%s' is currently not available", s);
     }
   }
 
index 1cf2328f9425dab0f41ba0150ba422656fa5df81..90c12b0f8d5f82508ea97a48f792f9d4c7f9d5ab 100644 (file)
@@ -548,7 +548,8 @@ gst_oss4_source_delay (GstAudioSrc * asrc)
   }
 
   delay = (info.fragstotal * info.fragsize) - info.bytes;
-  GST_LOG_OBJECT (oss, "fragstotal:%d, fragsize:%d, bytes:%d, delay:%d");
+  GST_LOG_OBJECT (oss, "fragstotal:%d, fragsize:%d, bytes:%d, delay:%d",
+      info.fragstotal, info.fragsize, info.bytes, delay);
   return delay;
 }