On Mon, 2026-05-18 at 10:32 +0200, Nam Cao wrote: > Gabriele Monaco <[email protected]> writes: > > + exit(run <= 0); > > Probably better to stick to the C standard: > > exit(run > 0 ? EXIT_SUCCESS : EXIT_FAILURE) > > but whatever. > > Reviewed-by: Nam Cao <[email protected]>
Good point, that's far more readable, will apply and perhaps use those macros also for other 0/1 in the file. Thanks, Gabriele
