diff options
Diffstat (limited to 'apps/talk.c')
| -rw-r--r-- | apps/talk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/talk.c b/apps/talk.c index 1b3dda3..d90d238 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -378,7 +378,7 @@ int talk_id(int id, bool enqueue) /* play a thumbnail from file */ -int talk_file(char* filename, bool enqueue) +int talk_file(const char* filename, bool enqueue) { int fd; int size; @@ -532,7 +532,7 @@ int talk_value(int n, int unit, bool enqueue) } /* spell a string */ -int talk_spell(char* spell, bool enqueue) +int talk_spell(const char* spell, bool enqueue) { char c; /* currently processed char */ |