diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-04-10 21:16:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-04-10 21:16:00 +0000 |
commit | afecfe46f314e9b5ba1d5d1d98d3e521be5f00b0 (patch) | |
tree | d18d6c67bde6491e297fa54331a5093000df3a49 /tools/gigabeats.c | |
parent | f8f1f3e8119a03f12e29b322c7e907d5581d7983 (diff) |
cleanup code for picky compiler warning options
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17060 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/gigabeats.c')
-rw-r--r-- | tools/gigabeats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gigabeats.c b/tools/gigabeats.c index 2c5a6286af..66fd885eb2 100644 --- a/tools/gigabeats.c +++ b/tools/gigabeats.c @@ -36,7 +36,7 @@ static FILE * openinfile( const char * filename ) exit( -1 ); }; return F; -}; +} static FILE * openoutfile( const char * filename ) { @@ -48,7 +48,7 @@ static FILE * openoutfile( const char * filename ) exit( -1 ); }; return F; -}; +} static uint32_t calc_csum(const unsigned char* pb, int cb) { |