From 37ff39039534451471099b7be76c034092ad3ed1 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 23 Feb 2001 23:36:37 +0000 Subject: [PATCH] *** empty log message *** --- src/metaflac/main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/metaflac/main.c b/src/metaflac/main.c index 308e620..b13a805 100644 --- a/src/metaflac/main.c +++ b/src/metaflac/main.c @@ -127,7 +127,8 @@ int usage(const char *message, ...) bool list(FILE *f, bool verbose) { - byte buf[65536], *b; + byte buf[65536]; + byte *b; FLAC__StreamMetaData metadata; unsigned blocknum = 0, byte_offset = 0, i; @@ -239,7 +240,7 @@ bool list(FILE *f, bool verbose) return true; } -static uint32 unpack_uint32(byte *b, unsigned bytes) +uint32 unpack_uint32(byte *b, unsigned bytes) { uint32 ret = 0; unsigned i; @@ -250,7 +251,7 @@ static uint32 unpack_uint32(byte *b, unsigned bytes) return ret; } -static uint64 unpack_uint64(byte *b, unsigned bytes) +uint64 unpack_uint64(byte *b, unsigned bytes) { uint64 ret = 0; unsigned i; -- 2.7.4