ansification: fix makedoc for ANSI C

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz 2017-12-04 03:25:26 -06:00
parent 7192f84096
commit 7bfa24c495
1 changed files with 2 additions and 2 deletions

View File

@ -1287,13 +1287,13 @@ DEFUN(compile, (string),
/* Got a number, embedd the magic push number
function */
add_to_definition(ptr, push_number);
add_to_definition(ptr, atol(word));
add_to_definition(ptr, (stinst_type)atol(word));
break;
default:
add_to_definition(ptr, call);
lookup = lookup_word(word);
if (!lookup) ret++;
add_to_definition(ptr, lookup);
add_to_definition(ptr, (stinst_type)lookup);
}
string = nextword(string, &word);