diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-08-21 12:02:23 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2007-08-21 12:02:23 +0000 |
| commit | ca2a0114a28a0815b0adcd0926b97e7ba2622133 (patch) | |
| tree | ee7154811a4248ba7f9ef5eef0845b258d7df364 /libopenjpeg/image.c | |
| parent | 2c75c27ee8153f9eabdc73a95cd5931a91f0d14e (diff) | |
Minor cleanup patch, that gets rid of a bunch of "old style declaration" warnings from Intel's compiler
Diffstat (limited to 'libopenjpeg/image.c')
| -rw-r--r-- | libopenjpeg/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopenjpeg/image.c b/libopenjpeg/image.c index 84664e9a..26d2074a 100644 --- a/libopenjpeg/image.c +++ b/libopenjpeg/image.c @@ -26,7 +26,7 @@ #include "opj_includes.h" -opj_image_t* opj_image_create0() { +opj_image_t* opj_image_create0(void) { opj_image_t *image = (opj_image_t*)opj_malloc(sizeof(opj_image_t)); return image; } |
