From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:25
|
Commit-ID: aa433d738cd13178db926362d13a2560c7b1bf75 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=aa433d738cd13178db926362d13a2560c7b1bf75 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:08:06 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing static declaration in output/outcoff.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- output/outcoff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outcoff.c b/output/outcoff.c index 5af063b..d813f5d 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 1996-2013 The NASM Authors - All Rights Reserved + * Copyright 1996-2014 The NASM Authors - All Rights Reserved * See the file AUTHORS included with the NASM distribution for * the specific copyright holders. * @@ -737,7 +737,7 @@ typedef struct tagString { static STRING *Exports = NULL; static struct Section *directive_sec; -void AddExport(char *name) +static void AddExport(char *name) { STRING *rvp = Exports, *newS; |