Commit 01455ee5e8152694cf3d5c927caae2d0844f4829

Con Kolivas 2014-02-21T12:39:19

Fix compilation error with two avalon types.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/hexdump.c b/hexdump.c
index 8951dde..eb24deb 100644
--- a/hexdump.c
+++ b/hexdump.c
@@ -27,7 +27,7 @@ static char nibble[] = {
 
 #define BYTES_PER_LINE 0x10
 
-void hexdump(const uint8_t *p, unsigned int len)
+static void hexdump(const uint8_t *p, unsigned int len)
 {
 	unsigned int i, addr;
 	unsigned int wordlen = sizeof(void*);