Sfoglia il codice sorgente

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 anno fa
parent
commit
e91aa0b747
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      tcp_comm.c

+ 2
- 2
tcp_comm.c Vedi File

531
 
531
 
532
 	unsigned int i;
532
 	unsigned int i;
533
 	for (i = 0; i < n_cmds; i++) {
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
 	ctx->cmds = cmds;
538
 	ctx->cmds = cmds;

Loading…
Annulla
Salva