Browse Source

Fix debug build

Reported by ghubcoder in #2, debug builds were broken due to
incorrect MAX_NARG macro - it should be COMM_MAX_NARG.
Brian Starkey 1 year ago
parent
commit
e91aa0b747
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      tcp_comm.c

+ 2
- 2
tcp_comm.c View File

@@ -531,8 +531,8 @@ struct tcp_comm_ctx *tcp_comm_new(const struct comm_command *const *cmds,
531 531
 
532 532
 	unsigned int i;
533 533
 	for (i = 0; i < n_cmds; i++) {
534
-		assert(cmds[i]->nargs <= MAX_NARG);
535
-		assert(cmds[i]->resp_nargs <= MAX_NARG);
534
+		assert(cmds[i]->nargs <= COMM_MAX_NARG);
535
+		assert(cmds[i]->resp_nargs <= COMM_MAX_NARG);
536 536
 	}
537 537
 
538 538
 	ctx->cmds = cmds;

Loading…
Cancel
Save