aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorGreg Steuck <greg@nest.cx>2024-07-09 05:34:10 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-07-09 07:22:23 +0000
commit39158d80027d3f98a4182e178ebfa0510f63c3b3 (patch)
tree9488a60052fce739877db95d47f49994fdc7c4a2 /executor
parentbc23a4421cc877985574576f2d44dcb70b9076d1 (diff)
executor: fix diagnostic message typo
Diffstat (limited to 'executor')
-rw-r--r--executor/conn.h2
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);
}
}