diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-02-27 21:21:13 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-02-27 21:21:13 +0000 |
| commit | 8ed943ce064dd49a76b2b2a2dea757b85699e3e9 (patch) | |
| tree | b66490308dcc319b55dd77ac9ff53f897ce28214 /apps/hosted | |
| parent | cab6ac22403731a796c8d6aa88a5adb9598e6214 (diff) | |
| download | rockbox-8ed943ce064dd49a76b2b2a2dea757b85699e3e9.zip rockbox-8ed943ce064dd49a76b2b2a2dea757b85699e3e9.tar.gz rockbox-8ed943ce064dd49a76b2b2a2dea757b85699e3e9.tar.bz2 rockbox-8ed943ce064dd49a76b2b2a2dea757b85699e3e9.tar.xz | |
Make struct static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29441 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/hosted')
| -rw-r--r-- | apps/hosted/notification.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/hosted/notification.c b/apps/hosted/notification.c index bde91b0..4df5b9d 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]) /* |