This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch, MIPS] Fix warning in sysdeps/mips/dl-trampoline.c


On 12/11/2014 11:21 AM, Steve Ellcey wrote:
> On Wed, 2014-12-10 at 20:01 -0500, Carlos O'Donell wrote:
> 
>> Why not "switch (l->l_info[VERSYMIDX (DT_VERSYM)] != NULL ? 0 : 1)" to
>> avoid the (int) case potentially hiding future type errors?
> 
> That seems reasonable but shouldn't it be "switch (l->l_info[VERSYMIDX
> (DT_VERSYM)] != NULL ? 1 : 0)"  I.e. return 1 if the boolean expression
> is true and 0 if the boolean expression is false?

Yes, you are correct, my mistake.

Cheers,
Carlos.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]