From: John Ellson Date: Sun, 6 Sep 2015 15:34:28 +0000 (-0400) Subject: Apply Debian patch: 'reduce-lab-color.patch' from Bebian bug #755124 X-Git-Tag: TRAVIS_CI_BUILD_EXPERIMENTAL~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38290371a171235c35857a103d692df07d20ddaf;p=graphviz Apply Debian patch: 'reduce-lab-color.patch' from Bebian bug #755124 --- diff --git a/lib/edgepaint/lab.h b/lib/edgepaint/lab.h index c5fd60ab8..98e2c5b9e 100644 --- a/lib/edgepaint/lab.h +++ b/lib/edgepaint/lab.h @@ -21,7 +21,7 @@ struct xyz_struct { typedef struct xyz_struct color_xyz; struct lab_struct { - double l, a, b;/* l: 0 to 100, a,b: -128 tp 128 */ + signed char l, a, b;/* l: 0 to 100, a,b: -128 tp 128 */ }; typedef struct lab_struct color_lab;