diff options
author | jstebbins <[email protected]> | 2014-01-24 18:12:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-24 18:12:53 +0000 |
commit | 0bc190da0afda80b9a40b6d24a5416c568c23fa0 (patch) | |
tree | e7024c37f88e40753531d67d2207eaf1e5ccb007 | |
parent | 1cee701ce99fbd613b97c5f6e9822f9326991a56 (diff) |
CLI: fix compiler warning
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5990 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index 6fcc2e404..c74bf9491 100644 --- a/test/test.c +++ b/test/test.c @@ -638,7 +638,7 @@ static void apply_loose_crop(int total, int * v1, int * v2, int mod, int max) static int HandleEvents( hb_handle_t * h ) { hb_state_t s; - hb_encoder_t *encoder; + const hb_encoder_t *encoder; int tmp_num_audio_tracks; int filter_cfr, filter_vrate, filter_vrate_base; |