Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d8df8ef3
Commit
d8df8ef3
authored
Jul 03, 2008
by
Vincent Penquerc'h
Committed by
Rémi Denis-Courmont
Jul 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use C99 %zu for size_t in printf
Signed-off-by:
Rémi Denis-Courmont
<
rdenis@simphalempin.com
>
parent
fc2e63a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/codec/kate.c
modules/codec/kate.c
+1
-1
No files found.
modules/codec/kate.c
View file @
d8df8ef3
...
@@ -504,7 +504,7 @@ static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp, block_t
...
@@ -504,7 +504,7 @@ static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp, block_t
memcpy
(
dest
,
src
,
ev
->
bitmap
->
width
);
memcpy
(
dest
,
src
,
ev
->
bitmap
->
width
);
}
}
msg_Dbg
(
p_dec
,
"Created bitmap, %
dx%d, %d
colors
\n
"
,
ev
->
bitmap
->
width
,
ev
->
bitmap
->
height
,
ev
->
palette
->
ncolors
);
msg_Dbg
(
p_dec
,
"Created bitmap, %
zux%zu, %zu
colors
\n
"
,
ev
->
bitmap
->
width
,
ev
->
bitmap
->
height
,
ev
->
palette
->
ncolors
);
}
}
#endif
#endif
...
...
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