diff options
| author | Greg Steuck <greg@nest.cx> | 2024-07-09 05:34:10 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-07-09 07:22:23 +0000 |
| commit | 39158d80027d3f98a4182e178ebfa0510f63c3b3 (patch) | |
| tree | 9488a60052fce739877db95d47f49994fdc7c4a2 /executor | |
| parent | bc23a4421cc877985574576f2d44dcb70b9076d1 (diff) | |
executor: fix diagnostic message typo
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/conn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/conn.h b/executor/conn.h index ce9e3e7dc..1a329a246 100644 --- a/executor/conn.h +++ b/executor/conn.h @@ -89,7 +89,7 @@ private: sleep_ms(1); continue; } - failmsg("failed to recv rpc", "fd=%d want=%zu sent=%zu n=%zd", fd_, size, recv, n); + failmsg("failed to recv rpc", "fd=%d want=%zu recv=%zu n=%zd", fd_, size, recv, n); } } |
