summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-08-18 01:09:31 +0000
committerJens Arnold <amiconn@rockbox.org>2004-08-18 01:09:31 +0000
commit8fb336148fb34474c67fbc6e0354daa4512a22fb (patch)
tree5910d0a54bf8424b424939a263abef0f570591f7 /apps/talk.c
parent6d0da414bfea35b4370ad820d28d4565521d7b12 (diff)
downloadrockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.tar.gz
rockbox-8fb336148fb34474c67fbc6e0354daa4512a22fb.zip
Const policed pointer arguments to functions, part 3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4999 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.c')
-rw-r--r--apps/talk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 1b3dda39ed..d90d23866e 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -378,7 +378,7 @@ int talk_id(int id, bool enqueue)
378 378
379 379
380/* play a thumbnail from file */ 380/* play a thumbnail from file */
381int talk_file(char* filename, bool enqueue) 381int talk_file(const char* filename, bool enqueue)
382{ 382{
383 int fd; 383 int fd;
384 int size; 384 int size;
@@ -532,7 +532,7 @@ int talk_value(int n, int unit, bool enqueue)
532} 532}
533 533
534/* spell a string */ 534/* spell a string */
535int talk_spell(char* spell, bool enqueue) 535int talk_spell(const char* spell, bool enqueue)
536{ 536{
537 char c; /* currently processed char */ 537 char c; /* currently processed char */
538 538