Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
liboggz
Commits
41a6e2d4
Commit
41a6e2d4
authored
Sep 15, 2009
by
conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oggz-codecs: fix for unsigned comparison >= 0
parent
2cc0d209
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/tools/oggz-codecs.c
src/tools/oggz-codecs.c
+1
-1
No files found.
src/tools/oggz-codecs.c
View file @
41a6e2d4
...
...
@@ -115,7 +115,7 @@ print_codec_name (OI_Info * info, long serialno)
}
if
(
show_as_mime
)
{
const
char
*
mime_type
=
NULL
;
if
(
content
>=
0
&&
content
<
OGGZ_CONTENT_UNKNOWN
)
if
(
content
<
OGGZ_CONTENT_UNKNOWN
)
mime_type
=
mime_type_names
[
content
];
if
(
!
mime_type
)
mime_type
=
"application/octet-stream"
;
printf
(
"%s%s"
,
mime_type
,
show_one_per_line
?
"
\n
"
:
""
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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