summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2010-04-21 19:59:49 +0000
committerAlexander Levin <al.le@rockbox.org>2010-04-21 19:59:49 +0000
commit847a0fd56c4e98c58ddabb30b1d36c11c8b0536c (patch)
treee29ab650de2b26af621644c018b804e35ad9a9f4
parent81422be15a947043bf00b8d2d29067bc8fad11d9 (diff)
Fix grammar in the comment (make code non offending :-)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25695 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/skin_engine/skin_parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 6495c4392a..eb63ac56e9 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1176,9 +1176,9 @@ static int parse_progressbar(const char *wps_bufptr,
if (!(ptr = parse_list("sdddd", &set, '|', ptr, &filename,
&x, &y, &width, &height)))
{
- /* if we are in a conditional then we probably don't want to fail
- * if the above doesnt work. so ASSume the | is breaking the conditional
- * and move on. the next token will fail if this is incorrect */
+ /* If we are in a conditional then we probably don't want to fail
+ * if the above doesnt work. So assume the | is breaking the conditional
+ * and move on. The next token will fail if this is incorrect. */
if (level >= 0)
return 0;
return WPS_ERROR_INVALID_PARAM;