summaryrefslogtreecommitdiffstats
path: root/jni/filters/vignette.c
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2012-10-01 17:21:55 -0700
committerJohn Hoford <hoford@google.com>2012-10-01 17:47:50 -0700
commitbf97d3aaeddfba06f6a00ee7abb23fcd28eb2e7d (patch)
treee9106cf3dc0aa55e900a76f51e4a77672a6d05e7 /jni/filters/vignette.c
parent3cf502a91b36bf6ce633f897505b0a2c3fc53ad5 (diff)
downloadandroid_packages_apps_Gallery2-bf97d3aaeddfba06f6a00ee7abb23fcd28eb2e7d.tar.gz
android_packages_apps_Gallery2-bf97d3aaeddfba06f6a00ee7abb23fcd28eb2e7d.tar.bz2
android_packages_apps_Gallery2-bf97d3aaeddfba06f6a00ee7abb23fcd28eb2e7d.zip
Fix exposure and fixed warnings
bug:7234321
Diffstat (limited to 'jni/filters/vignette.c')
-rw-r--r--jni/filters/vignette.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/filters/vignette.c b/jni/filters/vignette.c
index 7cff517b6..2799ff001 100644
--- a/jni/filters/vignette.c
+++ b/jni/filters/vignette.c
@@ -20,7 +20,7 @@ static int* gVignetteMap = 0;
static int gVignetteWidth = 0;
static int gVignetteHeight = 0;
-void __inline__ createVignetteMap(int w, int h)
+__inline__ void createVignetteMap(int w, int h)
{
if (gVignetteMap && (gVignetteWidth != w || gVignetteHeight != h))
{