diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 14:50:09 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 14:50:09 +0000 |
commit | e16c50551bed9fb6ad68965bcf739200429b6bf7 (patch) | |
tree | 572909f401bc3a50267a593fe95760e60e57f933 /gst/wavparse | |
parent | 17a38e044e460583939084ad864d5208bd6f2d94 (diff) |
parallel install fixes
Original commit message from CVS:
parallel install fixes
Diffstat (limited to 'gst/wavparse')
-rw-r--r-- | gst/wavparse/Makefile.am | 2 | ||||
-rw-r--r-- | gst/wavparse/gstwavparse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/wavparse/Makefile.am b/gst/wavparse/Makefile.am index 060a2133..8e8bfe5a 100644 --- a/gst/wavparse/Makefile.am +++ b/gst/wavparse/Makefile.am @@ -1,4 +1,4 @@ -plugindir = $(libdir)/gst +plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@ plugin_LTLIBRARIES = libgstwavparse.la diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index 27cda784..ab6fceb4 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -412,7 +412,7 @@ gst_wavparse_pad_convert (GstPad *pad, bytes_per_sample = wavparse->channels * wavparse->width / 8; if (bytes_per_sample == 0) { g_warning ("bytes_per_sample is 0, internal error\n"); - g_warning ("channels %d, width %d\n", + g_warning ("channels %d, width %d\n", wavparse->channels, wavparse->width); return FALSE; } |