Re: [PATCH] fix warnings with gcc 4.x

2005-07-19 Thread Joe Orton
On Tue, Jul 19, 2005 at 08:22:23AM -0400, Geoffrey Young wrote: > Joe Orton wrote: > > The APR base64 encode/decode functions expect unsigned char * arguments > > for the raw binary input/output buffers. gcc 4.x now warns for pointer > > signedness mismatches like this; casting is really the only

Re: [PATCH] fix warnings with gcc 4.x

2005-07-19 Thread Geoffrey Young
Joe Orton wrote: > The APR base64 encode/decode functions expect unsigned char * arguments > for the raw binary input/output buffers. gcc 4.x now warns for pointer > signedness mismatches like this; casting is really the only way. > (alternatively, if you dislike this, the warning can be turned

[PATCH] fix warnings with gcc 4.x

2005-07-19 Thread Joe Orton
The APR base64 encode/decode functions expect unsigned char * arguments for the raw binary input/output buffers. gcc 4.x now warns for pointer signedness mismatches like this; casting is really the only way. (alternatively, if you dislike this, the warning can be turned off) Also the mpxs_APR__B