diff options
author | Josh Triplett <josh@joshtriplett.org> | 2009-10-16 19:03:49 -0400 |
---|---|---|
committer | Josh Triplett <josh@joshtriplett.org> | 2009-11-15 18:01:42 -0500 |
commit | e8e63cbf9a339c972eeb5ccf8777c8067bdfd869 (patch) | |
tree | 438651f37aba11fd06929b3d8c8a79060d0d3d29 /sound/oss | |
parent | 5ccd991548894f0b699f7d0137c31758a6948ddc (diff) |
oss: Mark loadhex static in hex2hex.c
Nothing outside of hex2hex.c references loadhex.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'sound/oss')
-rw-r--r-- | sound/oss/hex2hex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/hex2hex.c b/sound/oss/hex2hex.c index 5460faae98c9..041ef5c52bc2 100644 --- a/sound/oss/hex2hex.c +++ b/sound/oss/hex2hex.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #define MAX_SIZE (256*1024) | 12 | #define MAX_SIZE (256*1024) |
13 | unsigned char buf[MAX_SIZE]; | 13 | unsigned char buf[MAX_SIZE]; |
14 | 14 | ||
15 | int loadhex(FILE *inf, unsigned char *buf) | 15 | static int loadhex(FILE *inf, unsigned char *buf) |
16 | { | 16 | { |
17 | int l=0, c, i; | 17 | int l=0, c, i; |
18 | 18 | ||