diff options
| author | Jonas Häggqvist <rasher@rasher.dk> | 2007-12-11 09:50:36 +0000 |
|---|---|---|
| committer | Jonas Häggqvist <rasher@rasher.dk> | 2007-12-11 09:50:36 +0000 |
| commit | 7ab63e3f1b621781339ee7efae5e25427618474e (patch) | |
| tree | f993b65f031c1f999f6cf74e9c57c16bd07bfae9 /apps/plugins | |
| parent | c16470bf046c62099c7bec08e23254cbf1df3f71 (diff) | |
| download | rockbox-7ab63e3f1b621781339ee7efae5e25427618474e.zip rockbox-7ab63e3f1b621781339ee7efae5e25427618474e.tar.gz rockbox-7ab63e3f1b621781339ee7efae5e25427618474e.tar.bz2 rockbox-7ab63e3f1b621781339ee7efae5e25427618474e.tar.xz | |
Fixed a few typos spotted on IRC.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15910 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/pictureflow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c index 24e6914..c52fba4 100644 --- a/apps/plugins/pictureflow.c +++ b/apps/plugins/pictureflow.c @@ -1527,7 +1527,7 @@ int main(void) } if (!allocate_buffers()) { - rb->splash(HZ, "Could allocate temporary buffers"); + rb->splash(HZ, "Could not allocate temporary buffers"); return PLUGIN_ERROR; } @@ -1551,7 +1551,7 @@ int main(void) } if (!free_buffers()) { - rb->splash(HZ, "Could note free temporary buffers"); + rb->splash(HZ, "Could not free temporary buffers"); return PLUGIN_ERROR; } |