On Thu, Feb 15, 2001 at 09:27:57PM +0900, Stephen J. Turnbull wrote:
(gdb) print (num_written >= lstr->out_buffer_ind)
$26 = 1
(gdb) print (num_written >= (int) lstr->out_buffer_ind)
$27 = 0
(gdb)
Aaaaarggggh!
How come you didn't get a "comparison between signed and unsigned"
warning from gcc? They're there exactly because of that.
OG.