comparison src/callproc.c @ 647:b39c14581166

[xemacs-hg @ 2001-08-13 04:45:47 by ben] removal of unsigned, size_t, etc.
author ben
date Mon, 13 Aug 2001 04:46:48 +0000
parents 38db05db9cb5
children fdefd0186b75
comparison
equal deleted inserted replaced
646:00c54252fe4f 647:b39c14581166
476 less than 1024--save that for the next bufferfull. */ 476 less than 1024--save that for the next bufferfull. */
477 477
478 nread = 0; 478 nread = 0;
479 while (nread < bufsize - 1024) 479 while (nread < bufsize - 1024)
480 { 480 {
481 Lstream_data_count this_read 481 Lstream_Data_Count this_read
482 = Lstream_read (XLSTREAM (instream), bufptr + nread, 482 = Lstream_read (XLSTREAM (instream), bufptr + nread,
483 bufsize - nread); 483 bufsize - nread);
484 484
485 if (this_read < 0) 485 if (this_read < 0)
486 goto give_up; 486 goto give_up;