Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
a8f6e21e
Commit
a8f6e21e
authored
Apr 07, 2016
by
danh-arm
Browse files
Merge pull request #563 from sbranden/tf_issue_380
Add support for %z in tf_print()
parents
61dbb028
bda77010
Changes
1
Show whitespace changes
Inline
Side-by-side
common/tf_printf.c
View file @
a8f6e21e
...
...
@@ -69,6 +69,7 @@ static void string_print(const char *str)
* %ld and %lld - signed 64 bit decimal format
* %lu and %llu - unsigned 64 bit decimal format
* %p - pointer format
* %z - size_t format
* Exits on all other formats.
*******************************************************************/
...
...
@@ -124,6 +125,11 @@ loop:
unsigned_num_print
(
unum
,
16
);
break
;
case
'z'
:
if
(
sizeof
(
size_t
)
==
8
)
bit64
=
1
;
fmt
++
;
goto
loop
;
case
'l'
:
bit64
=
1
;
fmt
++
;
...
...
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