Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 12:25:26 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:32 +0300
commit7bfa24c49563717426d1ee237f29d1ccfc4b51db (patch)
treefefed1f3dce0492b3edcaa95eed4cfd4a219efaf /newlib/doc
parent7192f840966684d4460542a516278ca08dd14842 (diff)
ansification: fix makedoc for ANSI C
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/doc')
-rw-r--r--newlib/doc/makedoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/doc/makedoc.c b/newlib/doc/makedoc.c
index 3f4ff4c06..3faad96a2 100644
--- a/newlib/doc/makedoc.c
+++ b/newlib/doc/makedoc.c
@@ -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);