diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 15:14:18 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 15:14:18 +0100 |
commit | e387e33000e17bda5b1c4e29a545b1cc60618342 (patch) | |
tree | 9df64787610e5b68955ea1bae5c0e73230d97816 /src | |
parent | 0bd997bff81387d188a3368dea6b27c9c39d3deb (diff) | |
download | xine-lib-e387e33000e17bda5b1c4e29a545b1cc60618342.tar.gz xine-lib-e387e33000e17bda5b1c4e29a545b1cc60618342.tar.bz2 |
Transform ignore_scheme into an array of arrays, padded at 8 bytes.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_gnome_vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c index 71a4ada85..ad756e7e7 100644 --- a/src/input/input_gnome_vfs.c +++ b/src/input/input_gnome_vfs.c @@ -291,7 +291,7 @@ gnomevfs_klass_dispose (input_class_t *this_gen) g_free (this); } -static const char *const ignore_scheme[] = { "cdda", "file", "http" }; +static const char ignore_scheme[][8] = { "cdda", "file", "http" }; static input_plugin_t * gnomevfs_klass_get_instance (input_class_t *klass_gen, xine_stream_t *stream, |