1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
--- ghostscript.orig/base/gxshade4.h
+++ ghostscript/base/gxshade4.h
@@ -88,7 +88,7 @@
struct wedge_vertex_list_elem_s {
gs_fixed_point p;
int level;
- bool divide_count;
+ int divide_count;
wedge_vertex_list_elem_t *next, *prev;
};
typedef struct {
--- ghostscript.orig/base/gsdevice.c
+++ ghostscript/base/gsdevice.c
@@ -1072,7 +1072,8 @@
static int
gx_parse_output_format(gs_parsed_file_name_t *pfn, const char **pfmt)
{
- bool have_format = false, field;
+ bool have_format = false;
+ int field;
uint width[2], int_width = sizeof(int) * 3, w = 0;
uint i;
|