aboutsummaryrefslogtreecommitdiffstats
path: root/sound/oss/hex2hex.c
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2009-10-16 16:03:49 -0700
committerJosh Triplett <josh@joshtriplett.org>2009-11-15 15:01:42 -0800
commite8e63cbf9a339c972eeb5ccf8777c8067bdfd869 (patch)
tree438651f37aba11fd06929b3d8c8a79060d0d3d29 /sound/oss/hex2hex.c
parentdtc: Mark various internal functions static (diff)
downloadlinux-dev-e8e63cbf9a339c972eeb5ccf8777c8067bdfd869.tar.xz
linux-dev-e8e63cbf9a339c972eeb5ccf8777c8067bdfd869.zip
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 '')
-rw-r--r--sound/oss/hex2hex.c2
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 @@
#define MAX_SIZE (256*1024)
unsigned char buf[MAX_SIZE];
-int loadhex(FILE *inf, unsigned char *buf)
+static int loadhex(FILE *inf, unsigned char *buf)
{
int l=0, c, i;