summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-11-25 12:33:33 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-11-25 12:33:33 -0800
commitef18237372df58b2ebf497693590218375c633d2 (patch)
treec2c3f6c2b702b303353bb1904336a79fd8b19e99
parent236f7949e44434f19a3f72fa4650362f612da735 (diff)
downloadnasm-ef18237372df58b2ebf497693590218375c633d2.tar.gz
Add missing static declaration in rdoff/rdfdump.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--rdoff/rdfdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdoff/rdfdump.c b/rdoff/rdfdump.c
index 0e55c67f..2e977ace 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;