From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:36:20
|
Commit-ID: b06da211f4a6585258157ffd38f272c48a6eae29 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=b06da211f4a6585258157ffd38f272c48a6eae29 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:34:34 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:34:34 -0800 Add missing static declaration in rdoff/rdlib.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- rdoff/rdlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdoff/rdlib.c b/rdoff/rdlib.c index 57ede6a..cf8d5e7 100644 --- a/rdoff/rdlib.c +++ b/rdoff/rdlib.c @@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 1996-2009 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. * @@ -126,7 +126,7 @@ int rdl_open(struct librarynode *lib, const char *name) return 0; } -void rdl_close(struct librarynode *lib) +static void rdl_close(struct librarynode *lib) { if (lib->fp) fclose(lib->fp); |