diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-28 11:32:13 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-28 11:32:13 +0000 |
| commit | d2cdd80f5cceb38f9add911f289d566f85a4c186 (patch) | |
| tree | b125f4b3eb73562668a3299714f20490237d8b4b /apps/plugins/imageviewer/png/png_decoder.c | |
| parent | 7949dd4daebe7f058839ecc22f653ee38064d97f (diff) | |
| download | rockbox-d2cdd80f5cceb38f9add911f289d566f85a4c186.zip rockbox-d2cdd80f5cceb38f9add911f289d566f85a4c186.tar.gz rockbox-d2cdd80f5cceb38f9add911f289d566f85a4c186.tar.bz2 rockbox-d2cdd80f5cceb38f9add911f289d566f85a4c186.tar.xz | |
plugins: another round of making local things static and adding missing #includes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31453 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/imageviewer/png/png_decoder.c')
| -rw-r--r-- | apps/plugins/imageviewer/png/png_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/imageviewer/png/png_decoder.c b/apps/plugins/imageviewer/png/png_decoder.c index bae1fe3..5c7b43f 100644 --- a/apps/plugins/imageviewer/png/png_decoder.c +++ b/apps/plugins/imageviewer/png/png_decoder.c @@ -383,7 +383,7 @@ static void LodePNG_InfoPng_init(LodePNG_InfoPng* info) #endif } -void LodePNG_InfoPng_cleanup(LodePNG_InfoPng* info) +static void LodePNG_InfoPng_cleanup(LodePNG_InfoPng* info) { LodePNG_InfoColor_cleanup(&info->color); } |