Use MIN with correct template <int>

svn-id: r38375
This commit is contained in:
Lars Persson 2009-02-16 18:37:28 +00:00
parent a43b0bc2dc
commit 6dbd7e21eb

View File

@ -1601,7 +1601,7 @@ disassemble(state_t *s, reg_t pos, int print_bw_tag, int print_bytecode)
int
c_dumpnodes(state_t *s) {
int end = MIN(cmd_params[0].val, VOCAB_TREE_NODES);
int end = MIN<int>(cmd_params[0].val, VOCAB_TREE_NODES);
int i;