diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 23:08:35 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 23:08:35 +0000 |
commit | 0229ec679bc46c1f50e0222c91818e6c6356ae92 (patch) | |
tree | 089e70ab7a8f619a575d44627cb20dc16ead3e77 /apps | |
parent | 0b41f0599f62ec9099197bbe6f4dd7144cebe0df (diff) | |
download | rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.tar.gz rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.zip |
fixed euroconverter, missed in the configfile change
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19787 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/euroconverter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/euroconverter.c b/apps/plugins/euroconverter.c index 58c9f1c4ad..f85ee798c4 100644 --- a/apps/plugins/euroconverter.c +++ b/apps/plugins/euroconverter.c @@ -164,7 +164,7 @@ static longlong_t inc; /* Persistent settings */ static struct configdata config[] = { - { TYPE_ENUM, 0, 12, &country, "country", currency_str, NULL } + { TYPE_ENUM, 0, 12, { .int_p = &country }, "country", currency_str } }; |