From: Khem Raj Date: Thu, 23 Feb 2023 00:28:22 +0000 (-0800) Subject: gdbserver/linux-low.cc: Fix a typo in ternary operator X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e977d9901393ea1bacbe1896af0929e968bc811;p=binutils-gdb.git gdbserver/linux-low.cc: Fix a typo in ternary operator Signed-off-by: Khem Raj --- diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc index 4328fedcbea..dec1944d45f 100644 --- a/gdbserver/linux-low.cc +++ b/gdbserver/linux-low.cc @@ -5390,7 +5390,7 @@ proc_xfer_memory (CORE_ADDR memaddr, unsigned char *readbuf, if (lseek (fd, memaddr, SEEK_SET) != -1) bytes = (readbuf != nullptr ? read (fd, readbuf, len) - ? write (fd, writebuf, len)); + : write (fd, writebuf, len)); #endif if (bytes < 0)