summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-01-17 23:08:35 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-01-17 23:08:35 +0000
commit0229ec679bc46c1f50e0222c91818e6c6356ae92 (patch)
tree089e70ab7a8f619a575d44627cb20dc16ead3e77
parent0b41f0599f62ec9099197bbe6f4dd7144cebe0df (diff)
downloadrockbox-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
-rw-r--r--apps/plugins/euroconverter.c2
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;
164 164
165/* Persistent settings */ 165/* Persistent settings */
166static struct configdata config[] = { 166static struct configdata config[] = {
167 { TYPE_ENUM, 0, 12, &country, "country", currency_str, NULL } 167 { TYPE_ENUM, 0, 12, { .int_p = &country }, "country", currency_str }
168}; 168};
169 169
170 170