diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-12-23 12:54:36 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2013-12-23 12:54:36 +0100 |
| commit | a4d1849e24da898dfd6ffefa3aba0961475041d0 (patch) | |
| tree | 8752716ab2af5c1ddfc28adb89dd4d4f5439c847 | |
| parent | ee7c13514e2da02e7fad214cf032361230bb55cb (diff) | |
| download | rockbox-a4d1849e24da898dfd6ffefa3aba0961475041d0.zip rockbox-a4d1849e24da898dfd6ffefa3aba0961475041d0.tar.gz rockbox-a4d1849e24da898dfd6ffefa3aba0961475041d0.tar.bz2 rockbox-a4d1849e24da898dfd6ffefa3aba0961475041d0.tar.xz | |
Fix yellow.
Change-Id: Ib46e4d0896de4227a508abf5806c00ec3d59db51
| -rw-r--r-- | apps/talk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/talk.c b/apps/talk.c index baf854f..9343661 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -528,6 +528,7 @@ static bool load_voicefile_index(int fd) static bool load_voicefile_data(int fd, size_t max_size) { #ifdef TALK_PARTIAL_LOAD + (void)fd; /* just allocate, populate on an as-needed basis later */ talk_handle = core_alloc_ex("voice data", max_size, &talk_ops); if (talk_handle < 0) |