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

@@ -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++ );
}
}