diff options
author | konablend <[email protected]> | 2009-06-24 03:18:52 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-24 03:18:52 +0000 |
commit | 3082c33859dd160a4db6b0f44ea83a092d44a823 (patch) | |
tree | 6c9bbaeceea6de30b569a5b1c0c78fa1dbb1cb61 /test | |
parent | 82cb2f642093c2a9a8e2f8f484dbb96dccc53c2a (diff) |
- fixed gcc warnings for various unused vars, implicit function decls, signedness.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2612 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/parsecsv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parsecsv.c b/test/parsecsv.c index cc3b6aa9c..f0c2a1ac5 100644 --- a/test/parsecsv.c +++ b/test/parsecsv.c @@ -139,7 +139,7 @@ void hb_dispose_cell( hb_csv_cell_t *cell ) static uint16_t hb_parse_character( hb_csv_file_t * file ) { int byte; - uint16_t c; + uint16_t c = 0; int need_char = 1; if( file == NULL ) |