Fix ARI warning in remote.c (no trailing \n in call to error)
* remote.c (remote_get_noisy_reply): Remove trailing "\n" in call to error.
This commit is contained in:
parent
b8e8282fd6
commit
cb91c06acc
2 changed files with 6 additions and 1 deletions
|
@ -446,7 +446,7 @@ remote_get_noisy_reply (char **buf_p,
|
|||
p = buf + strlen ("qRelocInsn:");
|
||||
pp = unpack_varlen_hex (p, &ul);
|
||||
if (*pp != ';')
|
||||
error (_("invalid qRelocInsn packet: %s\n"), buf);
|
||||
error (_("invalid qRelocInsn packet: %s"), buf);
|
||||
from = ul;
|
||||
|
||||
p = pp + 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue