The package is scheduled for autoremoval on December 14. This patch
should close the bug and keep mangler in testing if it can be merged
soon.
Description: Declare byte array as unsigned char rather than char to avoid 
narrowing
 A step up in pedantics in C++11 has identified a byte array that was not not 
declared
 as unsigned.
 .
 mangler (1.2.5-3) unstable; urgency=medium
 .
   * Change a byte array from type const char to const unsigned char. (Closes: 
#805160))
Author: William Panlener <wpanle...@gmail.com>
Bug-Debian: https://bugs.debian.org/805160
Forwarded: no

---

--- mangler-1.2.5.orig/src/manglerg15.h
+++ mangler-1.2.5/src/manglerg15.h
@@ -52,7 +52,7 @@ class ManglerG15
         std::vector<Glib::ustring> events;
 };
 
-const char g15_blank[] = {
+const unsigned char g15_blank[] = {
     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,

Reply via email to