From: nasm-bot f. H. P. A. <hp...@zy...> - 2014-11-25 20:18:24
|
Commit-ID: 443b8e9b5f97c1d2bb34430207e50fd19cb4aa40 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=443b8e9b5f97c1d2bb34430207e50fd19cb4aa40 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Tue, 25 Nov 2014 12:08:41 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Tue, 25 Nov 2014 12:14:52 -0800 Add missing static declaration in output/outieee.c Signed-off-by: H. Peter Anvin <hp...@zy...> --- output/outieee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outieee.c b/output/outieee.c index 5377ec6..56060db 100644 --- a/output/outieee.c +++ b/output/outieee.c @@ -1299,7 +1299,7 @@ static void ieee_unqualified_name(char *dest, char *source) } else strcpy(dest, source); } -void dbgls_init(void) +static void dbgls_init(void) { int tempint; |