summaryrefslogtreecommitdiff
path: root/lib9p/core.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-17 12:47:44 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-17 13:31:16 -0600
commit3c512ac435bb054e56b06a93adf7e74e4ce352fc (patch)
treed2569fec5c9ed8c094d358c541484fffb83ec6c7 /lib9p/core.c
parent7cbd849648d41c8b55b5b5fe618b8d20e75db868 (diff)
Fix some funny indents
Diffstat (limited to 'lib9p/core.c')
-rw-r--r--lib9p/core.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib9p/core.c b/lib9p/core.c
index 995808f..942db05 100644
--- a/lib9p/core.c
+++ b/lib9p/core.c
@@ -103,11 +103,11 @@ const char *lib9p_msgtype_str(enum lib9p_version ver, enum lib9p_msg_type typ) {
/* main message functions *****************************************************/
void fmt_print_lib9p_msg(lo_interface fmt_dest w, struct lib9p_ctx *ctx, enum lib9p_msg_type typ, void *body) {
- assert(ctx);
- assert_ver(ctx->version);
- assert_typ(typ);
- assert(_lib9p_table_msg[ctx->version][typ].print);
- _lib9p_table_msg[ctx->version][typ].print(w, ctx, body);
+ assert(ctx);
+ assert_ver(ctx->version);
+ assert_typ(typ);
+ assert(_lib9p_table_msg[ctx->version][typ].print);
+ _lib9p_table_msg[ctx->version][typ].print(w, ctx, body);
}
#define _lib9p_validate(LOW_TYP_BIT, ERRMSG, TABLE) do { \