diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/pixman-region.c | 4 | ||||
| -rw-r--r-- | common/pixman-region16.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/common/pixman-region.c b/common/pixman-region.c index e8917121..b1949950 100644 --- a/common/pixman-region.c +++ b/common/pixman-region.c @@ -204,7 +204,7 @@ alloc_data (size_t n) if (!sz) return NULL; - return malloc (sz); + return (region_data_type_t *) malloc(sz); } #define FREE_DATA(reg) if ((reg)->data && (reg)->data->size) free ((reg)->data) @@ -1703,7 +1703,7 @@ validate (region_type_t * badreg) if (ri == stack_regions) { - rit = malloc (data_size); + rit = (region_info_t *) malloc(data_size); if (!rit) goto bail; memcpy (rit, ri, num_ri * sizeof (region_info_t)); diff --git a/common/pixman-region16.c b/common/pixman-region16.c index 7c9f5cba..637c8a35 100644 --- a/common/pixman-region16.c +++ b/common/pixman-region16.c @@ -42,8 +42,6 @@ #define MIN(x1, x2) ((x1) < (x2) ? (x1) : (x2)) #define MAX(x1, x2) ((x1) > (x2) ? (x1) : (x2)) -typedef int pixman_bool_t; - typedef pixman_box16_t box_type_t; typedef pixman_region16_data_t region_data_type_t; typedef pixman_region16_t region_type_t; |
