mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Remove an errant {} from a FLOG
This commit is contained in:
parent
4659fdf704
commit
42f8672f34
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue