2004-03-05 Joel Sherrill <joel@OARcorp.com>

* sp07/buffered_io.c: Remove warning.
This commit is contained in:
Joel Sherrill
2004-03-05 18:26:16 +00:00
parent 1cf0ea1f0a
commit 6debefee26
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2004-03-05 Joel Sherrill <joel@OARcorp.com>
* sp07/buffered_io.c: Remove warning.
2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* sp01/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.

View File

@@ -32,7 +32,7 @@ void buffered_io_add_string( char *s )
{
char *p = s;
while ( *s ) {
Ring_buffer_Add_character( &Buffer, *s++ );
while ( *p ) {
Ring_buffer_Add_character( &Buffer, *p++ );
}
}