From 42f8672f34fe45f0a783ba2945272f8d76c7bbe4 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 19 May 2024 10:27:45 -0700 Subject: [PATCH] Remove an errant {} from a FLOG --- src/input_common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_common.rs b/src/input_common.rs index 96afc05bc..8181f5e7c 100644 --- a/src/input_common.rs +++ b/src/input_common.rs @@ -362,7 +362,7 @@ fn readb(in_fd: RawFd, blocking: bool) -> ReadbResult { // The terminal has been closed. return ReadbResult::Eof; } - FLOG!(reader, "Read byte {}", arr[0]); + FLOG!(reader, "Read byte", arr[0]); // The common path is to return a u8. return ReadbResult::Byte(arr[0]); }