The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / sdl_sound / 0001-fix-constness.patch
diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/sdl_sound/0001-fix-constness.patch b/cirros-testvm/src-cirros/buildroot-2015.05/package/sdl_sound/0001-fix-constness.patch
new file mode 100644 (file)
index 0000000..1f27a07
--- /dev/null
@@ -0,0 +1,16 @@
+decoders/speex: fix constness of speex mode
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+diff -durN sdl_sound-1.0.3.orig/decoders/speex.c sdl_sound-1.0.3/decoders/speex.c
+--- sdl_sound-1.0.3.orig/decoders/speex.c      2014-11-17 19:40:09.543553556 +0100
++++ sdl_sound-1.0.3/decoders/speex.c   2014-11-17 19:40:37.119864580 +0100
+@@ -124,7 +124,7 @@
+ static int process_header(speex_t *speex, Sound_Sample *sample)
+ {
+-    SpeexMode *mode;
++    const SpeexMode * mode;
+     SpeexHeader *hptr;
+     SpeexHeader header;
+     int enh_enabled = SPEEX_USE_PERCEPTUAL_ENHANCER;