Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
100
Issues
100
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
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
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 #%
ffu as the video track"
,
ebml
->
keyframe_track_number
);
ICECAST_LOG_DEBUG
(
"Identified track #%
llu 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