From 6b7fb186ddbc1448a09d01a92263391f998c3f8d Mon Sep 17 00:00:00 2001 From: kugel Date: Sun, 27 Feb 2011 21:21:13 +0000 Subject: [PATCH] Make struct static. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29441 a1c6a512-1295-4272-9138-f99709370657 --- apps/hosted/notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hosted/notification.c b/apps/hosted/notification.c index bde91b039f..4df5b9d6d2 100644 --- a/apps/hosted/notification.c +++ b/apps/hosted/notification.c @@ -37,7 +37,7 @@ static jobject NotificationManager_instance; static jstring title, artist, album, albumart; /* completely arbitrary dimensions. neded for find_albumart() */ -const struct dim dim = { .width = 200, .height = 200 }; +static const struct dim dim = { .width = 200, .height = 200 }; #define NZV(a) (a && a[0]) /* -- 2.11.4.GIT