Control: tags -1 patch Hi!
The attached debdiff for an NMU contains a patch which fixes the issue. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - glaub...@debian.org `. `' Freie Universitaet Berlin - glaub...@physik.fu-berlin.de `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
diff -Nru qpxtool-0.7.2/debian/changelog qpxtool-0.7.2/debian/changelog --- qpxtool-0.7.2/debian/changelog 2014-04-12 22:19:40.000000000 +0200 +++ qpxtool-0.7.2/debian/changelog 2017-02-27 14:04:55.000000000 +0100 @@ -1,3 +1,11 @@ +qpxtool (0.7.2-4.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add patch 07-fix-wr-mode-declarations.patch: + - Fix declaration of char attributes in wr_mode. (Closes: #856231) + + -- John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> Mon, 27 Feb 2017 14:04:55 +0100 + qpxtool (0.7.2-4) unstable; urgency=medium * Update debian/rules: delete option --parallel from dh command because it diff -Nru qpxtool-0.7.2/debian/patches/07-fix-wr-mode-declarations.patch qpxtool-0.7.2/debian/patches/07-fix-wr-mode-declarations.patch --- qpxtool-0.7.2/debian/patches/07-fix-wr-mode-declarations.patch 1970-01-01 01:00:00.000000000 +0100 +++ qpxtool-0.7.2/debian/patches/07-fix-wr-mode-declarations.patch 2017-02-27 14:04:53.000000000 +0100 @@ -0,0 +1,17 @@ +Description: Fix declarations of unsigned char in wr_mode +Author: John Paul Adrian Glaubitz <glaub...@physik.fu-berlin.de> +Last-Update: 2017-02-27 + +--- qpxtool-0.7.2.orig/lib/qpxtransport/include/qpx_mmc_defs.h ++++ qpxtool-0.7.2/lib/qpxtransport/include/qpx_mmc_defs.h +@@ -581,8 +581,8 @@ static const dev_desc _devtbl[]= { + #define WTYPE_LJ 4 + + typedef struct { +- char wtype; +- char dtype; ++ signed char wtype; ++ signed char dtype; + uint32_t id; + char name[32]; + } wr_mode; diff -Nru qpxtool-0.7.2/debian/patches/series qpxtool-0.7.2/debian/patches/series --- qpxtool-0.7.2/debian/patches/series 2014-04-12 22:19:40.000000000 +0200 +++ qpxtool-0.7.2/debian/patches/series 2017-02-27 14:04:55.000000000 +0100 @@ -4,3 +4,4 @@ 04-fix-build-with-libpng15.patch 05-add-hardening-flags-in-compiler-options.patch 06-make-port-for-hurd-i386.patch +07-fix-wr-mode-declarations.patch