fix nonnull val in jpeg loader proto.

SVN revision: 65056
This commit is contained in:
Carsten Haitzler 2011-11-11 08:11:16 +00:00
parent 0902d538a4
commit a4f94d2a09
1 changed files with 2 additions and 2 deletions

View File

@ -29,11 +29,11 @@ static void _JPEGErrorHandler2(j_common_ptr cinfo, int msg_level);
static Eina_Bool evas_image_load_file_head_jpeg_internal(Image_Entry *ie,
void *map,
size_t len,
int *error) EINA_ARG_NONNULL(1, 2, 3);
int *error) EINA_ARG_NONNULL(1, 2, 4);
static Eina_Bool evas_image_load_file_data_jpeg_internal(Image_Entry *ie,
void *map,
size_t len,
int *error) EINA_ARG_NONNULL(1, 2, 3);
int *error) EINA_ARG_NONNULL(1, 2, 4);
#if 0 /* not used at the moment */
static int evas_image_load_file_data_jpeg_alpha_internal(Image_Entry *ie, FILE *f) EINA_ARG_NONNULL(1, 2);
#endif