X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_property.c;h=7cbb6819a2b9c0aa0f1a0823340dd9bbe5a5c364;hb=087d6ef74f21320f7e63202c1feab248cbebc81a;hp=453368c14e7b05722c12b43094cec833c1a0fb19;hpb=e0983d216bc8b3d34225d42761060940d6da4f3c;p=melted 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 ) {