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 | |
| parent | 0b41f0599f62ec9099197bbe6f4dd7144cebe0df (diff) | |
| download | rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.zip rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.tar.gz rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.tar.bz2 rockbox-0229ec679bc46c1f50e0222c91818e6c6356ae92.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/euroconverter.c b/apps/plugins/euroconverter.c index 58c9f1c..f85ee79 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 } }; |