Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Raphael Nestler
poppler
Commits
9bb206fd
Commit
9bb206fd
authored
Oct 12, 2014
by
Pino Toscano
Browse files
Fix typos in error messages
Reported by Jakub Wilk, thanks!
parent
8d96350a
Changes
1
Hide whitespace changes
Inline
Side-by-side
poppler/JPEG2000Stream.cc
View file @
9bb206fd
...
...
@@ -165,13 +165,13 @@ void JPXStream::init2(unsigned char *buf, int bufLen, OPJ_CODEC_FORMAT format)
error:
if
(
format
==
CODEC_JP2
)
{
error
(
errSyntaxWarning
,
-
1
,
"Did no succeed opening JPX Stream as JP2, trying as J2K."
);
error
(
errSyntaxWarning
,
-
1
,
"Did no
t
succeed opening JPX Stream as JP2, trying as J2K."
);
init2
(
buf
,
bufLen
,
CODEC_J2K
);
}
else
if
(
format
==
CODEC_J2K
)
{
error
(
errSyntaxWarning
,
-
1
,
"Did no succeed opening JPX Stream as J2K, trying as JPT."
);
error
(
errSyntaxWarning
,
-
1
,
"Did no
t
succeed opening JPX Stream as J2K, trying as JPT."
);
init2
(
buf
,
bufLen
,
CODEC_JPT
);
}
else
{
error
(
errSyntaxError
,
-
1
,
"Did no succeed opening JPX Stream."
);
error
(
errSyntaxError
,
-
1
,
"Did no
t
succeed opening JPX Stream."
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment