diff options
author | René Stadler <mail@renestadler.de> | 2009-11-01 20:42:44 +0200 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2009-11-01 20:44:44 +0200 |
commit | e5dd78e0ca12e527c33fa35479422785a8073cad (patch) | |
tree | eb672d3a98f29dbf4d47ab774b7be6adfbd4a580 /gst/aiff | |
parent | a5f72046afbe4f1403ff04dd13dc9cc2d6fe23dd (diff) | |
download | gstreamer-plugins-bad-e5dd78e0ca12e527c33fa35479422785a8073cad.tar.gz |
aiff: fix aiffparse debug category variable name
Fixes missing symbol when compiling with debugging, since this is now in sync
with the plugin_init in aiff.c.
Diffstat (limited to 'gst/aiff')
-rw-r--r-- | gst/aiff/aiffparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/aiff/aiffparse.c b/gst/aiff/aiffparse.c index 38f3da1f1..7f0a75092 100644 --- a/gst/aiff/aiffparse.c +++ b/gst/aiff/aiffparse.c @@ -59,8 +59,8 @@ #include <gst/audio/audio.h> #include <gst/gst-i18n-plugin.h> -GST_DEBUG_CATEGORY (aiff_parse_debug); -#define GST_CAT_DEFAULT (aiff_parse_debug) +GST_DEBUG_CATEGORY (aiffparse_debug); +#define GST_CAT_DEFAULT (aiffparse_debug) static void gst_aiff_parse_dispose (GObject * object); |