diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-04 17:10:56 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-04 19:37:01 -0600 |
commit | 8b95b3bcb5b85a582ef9723383fd137206bd5089 (patch) | |
tree | f1333b2e8b79c798be5651ee29f78640772d1786 | |
parent | ce8ae41d677875adb45d99c351bcba108fb82a44 (diff) |
lib9p: core.h: Fix doc comment
-rw-r--r-- | lib9p/core_include/lib9p/core.h | 4 |
1 files changed, 1 insertions, 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); |