From 39158d80027d3f98a4182e178ebfa0510f63c3b3 Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Tue, 9 Jul 2024 05:34:10 +0200 Subject: executor: fix diagnostic message typo --- executor/conn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor') 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); } } -- cgit mrf-deployment