summaryrefslogtreecommitdiffstats
path: root/libhb/muxogm.c
diff options
context:
space:
mode:
authorclee <[email protected]>2007-04-15 08:41:11 +0000
committerclee <[email protected]>2007-04-15 08:41:11 +0000
commit8e7efbc975ecc078689a2dc3c0241a88abb9385e (patch)
treec5ed87c40da1803e35eba18550a9018dff729205 /libhb/muxogm.c
parent73c8d09e51695e5a12cfca5354391fc264a21e28 (diff)
Cleaning up some compiler warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@508 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxogm.c')
-rw-r--r--libhb/muxogm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxogm.c b/libhb/muxogm.c
index 656c8e780..4a008ff78 100644
--- a/libhb/muxogm.c
+++ b/libhb/muxogm.c
@@ -205,7 +205,7 @@ static int OGMInit( hb_mux_object_t * m )
SetDWLE( &h.header.audio.i_avgbytespersec,
job->abitrate / 8 );
- op.packet = (char*) &h;
+ op.packet = (unsigned char*) &h;
op.bytes = sizeof( ogg_stream_header_t );
op.b_o_s = 1;
op.e_o_s = 0;