diff options
author | clee <[email protected]> | 2007-04-15 08:41:11 +0000 |
---|---|---|
committer | clee <[email protected]> | 2007-04-15 08:41:11 +0000 |
commit | 8e7efbc975ecc078689a2dc3c0241a88abb9385e (patch) | |
tree | c5ed87c40da1803e35eba18550a9018dff729205 /libhb/hb.c | |
parent | 73c8d09e51695e5a12cfca5354391fc264a21e28 (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/hb.c')
-rw-r--r-- | libhb/hb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index d1eac132f..e9d7aa129 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -324,7 +324,7 @@ void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture, memset( filename, 0, 1024 ); hb_get_tempory_filename( h, filename, "%x%d", - (int) title, picture ); + (intptr_t) title, picture ); file = fopen( filename, "r" ); if( !file ) |