ansification: fix makedoc for ANSI C
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
parent
7192f84096
commit
7bfa24c495
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue