summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-10-10 14:34:07 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-10-10 14:34:07 +0000
commit462771066bac5f75d3e6507ea275d182ecaaebf4 (patch)
tree29274b05e2b6d5ce20ee429a59982fe8f8e36ce9
parent38e88f35f49ad1e3fc58fe67771ecc3412541ae8 (diff)
downloadrockbox-462771066bac5f75d3e6507ea275d182ecaaebf4.tar.gz
rockbox-462771066bac5f75d3e6507ea275d182ecaaebf4.zip
correct comment in configfile.h, FS#11292 by Chris Savery.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28234 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/lib/configfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/configfile.h b/apps/plugins/lib/configfile.h
index 231a833d9c..4a980b4e67 100644
--- a/apps/plugins/lib/configfile.h
+++ b/apps/plugins/lib/configfile.h
@@ -30,7 +30,7 @@ struct configdata
30{ 30{
31 int type; /* See TYPE_ macros above */ 31 int type; /* See TYPE_ macros above */
32 int min; /* Min value for integers, should be 0 for enums */ 32 int min; /* Min value for integers, should be 0 for enums */
33 int max; /* Max value for enums and integers, 33 int max; /* Max value for integers, value count for enums,
34 buffer size for strings */ 34 buffer size for strings */
35 union 35 union
36 { 36 {