From: Dan Dennedy Date: Sun, 26 May 2013 17:37:30 +0000 (-0700) Subject: Fix default type for mlt_position regression in commit 7601aa4. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=2cb405ac3d392f6ecb5a33b096e11265ba832a8d;p=mlt Fix default type for mlt_position regression in commit 7601aa4. --- diff --git a/src/framework/mlt_types.h b/src/framework/mlt_types.h index 764c0c4d..b625f600 100644 --- a/src/framework/mlt_types.h +++ b/src/framework/mlt_types.h @@ -103,7 +103,7 @@ typedef enum mlt_service_type; /* I don't want to break anyone's applications without warning. -Zach */ -#define DOUBLE_MLT_POSITION +#undef DOUBLE_MLT_POSITION #ifdef DOUBLE_MLT_POSITION #define MLT_POSITION_FMT "%f" #define MLT_POSITION_MOD(A, B) (A - B * ((int)(A / B)))