From c9ac67cd0529cd5cc024a1a92308098b9f4988b2 Mon Sep 17 00:00:00 2001 From: Antonin Descampe Date: Wed, 9 Nov 2005 10:17:51 +0000 Subject: [PATCH] minor change to avoid warnings about signedness --- libopenjpeg/jp2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libopenjpeg/jp2.c b/libopenjpeg/jp2.c index ad55464b..74231502 100644 --- a/libopenjpeg/jp2.c +++ b/libopenjpeg/jp2.c @@ -88,7 +88,7 @@ int jp2_init_stdjp2(jp2_struct_t * jp2_struct) jp2_struct->brand = JP2_JP2; /* BR */ jp2_struct->minversion = 0; /* MinV */ jp2_struct->numcl = 1; - jp2_struct->cl = (int *) malloc(jp2_struct->numcl * sizeof(int)); + jp2_struct->cl = (unsigned int *) malloc(jp2_struct->numcl * sizeof(int)); jp2_struct->cl[0] = JP2_JP2; /* CL0 : JP2 */ jp2_struct->C = 7; /* C : Always 7*/