summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Häggqvist <rasher@rasher.dk>2007-12-11 09:50:36 +0000
committerJonas Häggqvist <rasher@rasher.dk>2007-12-11 09:50:36 +0000
commit7ab63e3f1b621781339ee7efae5e25427618474e (patch)
treef993b65f031c1f999f6cf74e9c57c16bd07bfae9
parentc16470bf046c62099c7bec08e23254cbf1df3f71 (diff)
downloadrockbox-7ab63e3f1b621781339ee7efae5e25427618474e.tar.gz
rockbox-7ab63e3f1b621781339ee7efae5e25427618474e.zip
Fixed a few typos spotted on IRC.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15910 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/pictureflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c
index 24e69147a1..c52fba4970 100644
--- a/apps/plugins/pictureflow.c
+++ b/apps/plugins/pictureflow.c
@@ -1527,7 +1527,7 @@ int main(void)
1527 } 1527 }
1528 1528
1529 if (!allocate_buffers()) { 1529 if (!allocate_buffers()) {
1530 rb->splash(HZ, "Could allocate temporary buffers"); 1530 rb->splash(HZ, "Could not allocate temporary buffers");
1531 return PLUGIN_ERROR; 1531 return PLUGIN_ERROR;
1532 } 1532 }
1533 1533
@@ -1551,7 +1551,7 @@ int main(void)
1551 } 1551 }
1552 1552
1553 if (!free_buffers()) { 1553 if (!free_buffers()) {
1554 rb->splash(HZ, "Could note free temporary buffers"); 1554 rb->splash(HZ, "Could not free temporary buffers");
1555 return PLUGIN_ERROR; 1555 return PLUGIN_ERROR;
1556 } 1556 }
1557 1557