summaryrefslogtreecommitdiff
path: root/package/libaudiofile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-03-17 03:59:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-03-17 04:00:54 +0100
commit763fb502c1d94c33e4bd1034886cfd3522e44eff (patch)
tree893d423af3f49140bb51d3406a2aedff6d8cbfff /package/libaudiofile
parent17f9cab66e40880878f1ec2ae98d76765addff08 (diff)
libaudiofile: fix gcc6 compile issue
Diffstat (limited to 'package/libaudiofile')
-rw-r--r--package/libaudiofile/patches/patch-libaudiofile_modules_SimpleModule_h11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/libaudiofile/patches/patch-libaudiofile_modules_SimpleModule_h b/package/libaudiofile/patches/patch-libaudiofile_modules_SimpleModule_h
new file mode 100644
index 000000000..2f7639f2f
--- /dev/null
+++ b/package/libaudiofile/patches/patch-libaudiofile_modules_SimpleModule_h
@@ -0,0 +1,11 @@
+--- audiofile-0.3.6.orig/libaudiofile/modules/SimpleModule.h 2013-03-06 06:30:03.000000000 +0100
++++ audiofile-0.3.6/libaudiofile/modules/SimpleModule.h 2017-03-12 21:13:26.273893853 +0100
+@@ -123,7 +123,7 @@ struct signConverter
+ typedef typename IntTypes<Format>::UnsignedType UnsignedType;
+
+ static const int kScaleBits = (Format + 1) * CHAR_BIT - 1;
+- static const int kMinSignedValue = -1 << kScaleBits;
++ static const int kMinSignedValue = static_cast<signed>(static_cast<unsigned>(-1) << kScaleBits);;
+
+ struct signedToUnsigned : public std::unary_function<SignedType, UnsignedType>
+ {