From 8b95b3bcb5b85a582ef9723383fd137206bd5089 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 4 Jun 2025 17:10:56 -0600 Subject: lib9p: core.h: Fix doc comment --- lib9p/core_include/lib9p/core.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib9p/core_include/lib9p/core.h b/lib9p/core_include/lib9p/core.h index 1fb71f1..69b8d3f 100644 --- a/lib9p/core_include/lib9p/core.h +++ b/lib9p/core_include/lib9p/core.h @@ -202,14 +202,12 @@ void lib9p_stat_unmarshal(struct lib9p_ctx *ctx, uint8_t *net_bytes, * marshal bitfield bits that aren't in ctx->version; it applies a * version-specific mask to bitfields. * - * @param ctx : negotiated protocol parameters, where to record errors + * @param ctx : negotiated protocol parameters * @param max_net_size : the maximum network-encoded size to allow * @param obj : the message to encode * * @return ret_bytes: the buffer to encode into * @return the number of bytes written, or 0 if the stat object does not fit in max_net_size - * - * @errno L_ERANGE: reply does not fit in max_net_size */ uint32_t lib9p_stat_marshal(struct lib9p_ctx *ctx, uint32_t max_net_size, struct lib9p_stat *obj, uint8_t *ret_bytes); -- cgit v1.2.3-2-g168b