diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-04-06 19:37:41 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-04-06 19:37:41 +0000 |
| commit | a9ffcb3516eb1e66affa2570b273eccd31b9ef16 (patch) | |
| tree | 2b6773c10af9555eccd4b1463f7841b5354c1cd1 /apps | |
| parent | ea907b31ae6595fc2b92e2da5da3cb12d4a6abff (diff) | |
| download | rockbox-a9ffcb3516eb1e66affa2570b273eccd31b9ef16.zip rockbox-a9ffcb3516eb1e66affa2570b273eccd31b9ef16.tar.gz rockbox-a9ffcb3516eb1e66affa2570b273eccd31b9ef16.tar.bz2 rockbox-a9ffcb3516eb1e66affa2570b273eccd31b9ef16.tar.xz | |
Make array static const in apps/recorder/jpeg_load.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25500 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/jpeg_load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/jpeg_load.c b/apps/recorder/jpeg_load.c index ec1143f..f75176d 100644 --- a/apps/recorder/jpeg_load.c +++ b/apps/recorder/jpeg_load.c @@ -843,7 +843,7 @@ struct idct_entry { void (*h_idct)(int16_t *ws, unsigned char *out, int16_t *end, int rowstep); }; -struct idct_entry idct_tbl[] = { +static const struct idct_entry idct_tbl[] = { { PASS1_BITS, NULL, jpeg_idct1h }, { PASS1_BITS, jpeg_idct2v, jpeg_idct2h }, { 0, jpeg_idct4v, jpeg_idct4h }, |