summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/talk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/talk.c b/apps/talk.c
index c327487962..0e3ff17a1b 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -542,7 +542,7 @@ void talk_init(void)
542 filehandle = open_voicefile(); 542 filehandle = open_voicefile();
543 size_t audiobufsz = audiobufend - audiobuf; 543 size_t audiobufsz = audiobufend - audiobuf;
544 /* test if we can open and if it fits in the audiobuffer */ 544 /* test if we can open and if it fits in the audiobuffer */
545 has_voicefile = filehandle >= 0 && filesize(filehandle) > (off_t)audiobufsz; 545 has_voicefile = filehandle >= 0 && filesize(filehandle) <= (off_t)audiobufsz;
546 voicefile_size = 0; 546 voicefile_size = 0;
547 547
548 if (has_voicefile) 548 if (has_voicefile)