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
Icecast-Server
Commits
b10406df
Commit
b10406df
authored
Jun 20, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Fixed ICECAST_LOG_DEBUG()'s format string
parent
526ecdaa
Pipeline
#234
passed with stage
in 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/format_ebml.c
src/format_ebml.c
+1
-1
No files found.
src/format_ebml.c
View file @
b10406df
...
...
@@ -845,7 +845,7 @@ static inline void ebml_check_track(ebml_t *ebml)
&&
ebml
->
parsing_track_number
!=
EBML_UNKNOWN
)
{
ebml
->
keyframe_track_number
=
ebml
->
parsing_track_number
;
ICECAST_LOG_DEBUG
(
"Identified track #%
ff
u as the video track"
,
ebml
->
keyframe_track_number
);
ICECAST_LOG_DEBUG
(
"Identified track #%
ll
u as the video track"
,
(
long
long
unsigned
int
)
ebml
->
keyframe_track_number
);
}
}
...
...
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