From 087d6ef74f21320f7e63202c1feab248cbebc81a Mon Sep 17 00:00:00 2001 From: ddennedy Date: Tue, 3 Mar 2009 04:53:22 +0000 Subject: [PATCH] mlt_property.c: suppress compiler warning git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1371 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_property.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/framework/mlt_property.c b/src/framework/mlt_property.c index 453368c..7cbb681 100644 --- a/src/framework/mlt_property.c +++ b/src/framework/mlt_property.c @@ -427,7 +427,7 @@ char *mlt_property_get_string( mlt_property this ) { this->types |= mlt_prop_string; this->prop_string = malloc( 32 ); - sprintf( this->prop_string, "%lld", this->prop_int64 ); + sprintf( this->prop_string, "%lld", (long long int)this->prop_int64 ); } else if ( this->types & mlt_prop_data && this->serialiser != NULL ) { -- 1.7.4.4