From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:25
|
Commit-ID: d4184a0e0faa4e070fe93911c3942c9ab8ee7b50 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=d4184a0e0faa4e070fe93911c3942c9ab8ee7b50 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:09:44 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing static declarations in output/outobj.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- output/outobj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outobj.c b/output/outobj.c index 225ea4f..6b173eb 100644 --- a/output/outobj.c +++ b/output/outobj.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. * @@ -2404,7 +2404,7 @@ static void obj_fwrite(ObjRecord * orp) extern macros_t obj_stdmac[]; -void dbgbi_init(void) +static void dbgbi_init(void) { fnhead = NULL; fntail = &fnhead; |