From 02436f52c6e82177c4ca5c259ca6c1b04dac938a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 28 Apr 2014 00:20:47 +0100 Subject: [PATCH] goom: fix compilation on ios-arm7-10.9 and osx-x86_64 uint is not a standard type, and the rest of the code uses Uint which is locally typedefed to unsigned int. https://bugzilla.gnome.org/show_bug.cgi?id=729067 --- gst/goom/filters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/goom/filters.c b/gst/goom/filters.c index 338070cee3..703d20263d 100644 --- a/gst/goom/filters.c +++ b/gst/goom/filters.c @@ -731,7 +731,7 @@ generatePrecalCoef (int precalCoef[16][16]) if (!(coefh || coefv)) { i = 255; } else { - uint i1, i2, i3, i4; + Uint i1, i2, i3, i4; i1 = diffcoeffh * diffcoeffv; i2 = coefh * diffcoeffv;