Skip to content

Commit

Permalink
oss: Mark loadhex static in hex2hex.c
Browse files Browse the repository at this point in the history
Nothing outside of hex2hex.c references loadhex.

Signed-off-by: Josh Triplett <josh@joshtriplett.org>
  • Loading branch information
Josh Triplett committed Nov 15, 2009
1 parent 5ccd991 commit e8e63cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/oss/hex2hex.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit e8e63cb

Please sign in to comment.