From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:36:18
|
Commit-ID: ef18237372df58b2ebf497693590218375c633d2 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=ef18237372df58b2ebf497693590218375c633d2 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:33:33 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:33:33 -0800 Add missing static declaration in rdoff/rdfdump.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- rdoff/rdfdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rdoff/rdfdump.c b/rdoff/rdfdump.c index 0e55c67..2e977ac 100644 --- a/rdoff/rdfdump.c +++ b/rdoff/rdfdump.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. * @@ -49,7 +49,7 @@ FILE *infile; -void print_header(int32_t length, int rdf_version) +static void print_header(int32_t length, int rdf_version) { char buf[129], t, l, s, flags; uint8_t reclen; |