From 5e795d90a1e47616e0c7a2e39381c13ccf7fd6dd Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Wed, 26 Jul 2017 21:06:38 +0200 Subject: Spelling fixes (patch by ka7, #890, rebased on top of master) --- wrapping/java/openjp2/JavaOpenJPEG.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wrapping/java/openjp2/JavaOpenJPEG.c') diff --git a/wrapping/java/openjp2/JavaOpenJPEG.c b/wrapping/java/openjp2/JavaOpenJPEG.c index dad2dc66..85b0c0af 100644 --- a/wrapping/java/openjp2/JavaOpenJPEG.c +++ b/wrapping/java/openjp2/JavaOpenJPEG.c @@ -1395,7 +1395,7 @@ static int parse_cmdline_encoder(int argc, char **argv, @return a pointer to a char[] Syntax of the index: one char for the version number (1): one byte because no problem with little endian, big endian etc. - one int for each of the following informations: + one int for each of the following information: Image Width Image Height progression order @@ -1468,7 +1468,7 @@ static char* create_index_into_byte_array(opj_codestream_info_t *cstr_info, buffer[0] = 1; /* Version stored on a byte*/ buffer++; - /* Remaining informations are stored on a int.*/ + /* Remaining information are stored on a int.*/ ((int*)buffer)[buffer_pos++] = cstr_info->image_w; ((int*)buffer)[buffer_pos++] = cstr_info->image_h; ((int*)buffer)[buffer_pos++] = cstr_info->prog; -- cgit v1.2.3