diff options
| author | Dan Everton <dan@iocaine.org> | 2007-02-09 10:20:27 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2007-02-09 10:20:27 +0000 |
| commit | c22e29f1c370a9a21d895d83ceab1679f18b8bc3 (patch) | |
| tree | cf8263baaafccffc5dfb665901b2f594cbbfb8bf /apps/codecs | |
| parent | 3e4613ac891bc709a64f93a6eff144c028a0ebe9 (diff) | |
| download | rockbox-c22e29f1c370a9a21d895d83ceab1679f18b8bc3.zip rockbox-c22e29f1c370a9a21d895d83ceab1679f18b8bc3.tar.gz rockbox-c22e29f1c370a9a21d895d83ceab1679f18b8bc3.tar.bz2 rockbox-c22e29f1c370a9a21d895d83ceab1679f18b8bc3.tar.xz | |
Fix a warning in Speex codec_main declaration.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12243 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/speex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/speex.c b/apps/codecs/speex.c index 68010d6..6092c9c 100644 --- a/apps/codecs/speex.c +++ b/apps/codecs/speex.c @@ -326,7 +326,7 @@ extern char iend[]; #endif /* this is the codec entry point */ -enum codec_status codec_main() +enum codec_status codec_main(void) { SpeexBits vf; int error; |