comparison src/glyphs-x.c @ 462:0784d089fdc9 r21-2-46

Import from CVS: tag r21-2-46
author cvs
date Mon, 13 Aug 2007 11:44:37 +0200
parents 223736d75acb
children 183866b06e0b
comparison
equal deleted inserted replaced
461:120ed4009e51 462:0784d089fdc9
701 #endif 701 #endif
702 702
703 /* Get the data while doing the conversion */ 703 /* Get the data while doing the conversion */
704 while (1) 704 while (1)
705 { 705 {
706 ssize_t size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf)); 706 Lstream_data_count size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
707 if (!size_in_bytes) 707 if (!size_in_bytes)
708 break; 708 break;
709 /* It does seem the flushes are necessary... */ 709 /* It does seem the flushes are necessary... */
710 #ifdef FILE_CODING 710 #ifdef FILE_CODING
711 Lstream_write (costr, tempbuf, size_in_bytes); 711 Lstream_write (costr, tempbuf, size_in_bytes);