summaryrefslogtreecommitdiff
path: root/src/libxineadec/nsf.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 22:13:45 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 22:13:45 +0000
commit11de71b0938af5b027b78b0e0db9617ab22a319f (patch)
treee765ba126df0bb5107eb1fe7f5e819b8f7e4aa07 /src/libxineadec/nsf.c
parent329d8f32349ce401eaf8b486e496b65f27cbd920 (diff)
downloadxine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.gz
xine-lib-11de71b0938af5b027b78b0e0db9617ab22a319f.tar.bz2
More static/const fixes from Gentoo. These should probably go upstream.
CVS patchset: 8008 CVS date: 2006/06/02 22:13:45
Diffstat (limited to 'src/libxineadec/nsf.c')
-rw-r--r--src/libxineadec/nsf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libxineadec/nsf.c b/src/libxineadec/nsf.c
index 8e6ccd1b6..db906b087 100644
--- a/src/libxineadec/nsf.c
+++ b/src/libxineadec/nsf.c
@@ -20,7 +20,7 @@
* NSF Audio "Decoder" using the Nosefart NSF engine by Matt Conte
* http://www.baisoku.org/
*
- * $Id: nsf.c,v 1.10 2006/05/03 19:46:08 dsalt Exp $
+ * $Id: nsf.c,v 1.11 2006/06/02 22:13:45 dsalt Exp $
*/
#include <stdio.h>
@@ -279,7 +279,7 @@ static uint32_t audio_types[] = {
* the priority that the plugin should be given with respect to other
* plugins that handle the same buffer type. A plugin with priority (n+1)
* will be used instead of a plugin with priority (n). */
-static decoder_info_t dec_info_audio = {
+static const decoder_info_t dec_info_audio = {
audio_types, /* supported types */
5 /* priority */
};