mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* remote-udi.c (udi_wait): Call warning' not
error'.
This commit is contained in:
parent
67a64bec4e
commit
83f00e88d7
@ -461,7 +461,10 @@ udi_wait (status)
|
||||
{
|
||||
case UDIStdoutReady:
|
||||
if (UDIGetStdout (sbuf, (UDISizeT)SBUF_MAX, &CountDone))
|
||||
error ("UDIGetStdout() failed in udi_wait");
|
||||
/* This is said to happen if the program tries to output
|
||||
a whole bunch of output (more than SBUF_MAX, I would
|
||||
guess). It doesn't seem to happen with the simulator. */
|
||||
warning ("UDIGetStdout() failed in udi_wait");
|
||||
fwrite (sbuf, 1, CountDone, stdout);
|
||||
fflush(stdout);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user