Re: X11DRV: Fix signed/unsigned comparison warnings

2004-08-12 Thread Rein Klazes
On Wed, 11 Aug 2004 23:10:29 +0200, you wrote: > static int LookupEntry(LFANDSIZE *plfsz) > { > - int i, prev_i = -1; > + unsigned int i; > + int prev_i = -1; > >for(i = mru; i >= 0; i = glyphsetCache[i].next) { ^^^ Hey, this comparison is now always true, does gc

Re: X11DRV: Fix signed/unsigned comparison warnings

2004-08-11 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > Changelog: > Fix signed/unsigned comparison warnings A number of these changes are wrong. Please be more careful when doing that sort of thing, only change the ones you are absolutely sure about. We don't want to introduce bugs just to silence warnin