Re: winedbg: Add support for printing c++ bool values
> what about the simpler: > +dbg_printf(val_int ? "true" : "false"); Works for me. I've re-sent the patch. Cheers Jon
Re: winedbg: Add support for printing c++ bool values
Jon Griffiths a écrit : > Hi, > > Subject says it all. > > +dbg_printf("%s", val_int ? "true" : "false"); what about the simpler: +dbg_printf(val_int ? "true" : "false"); A+ -- Eric Pouech "The problem with designing something completely foolproof is to underestimate