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
881cf374
Commit
881cf374
authored
Jul 26, 2017
by
davidcunado-arm
Committed by
GitHub
Jul 26, 2017
Browse files
Merge pull request #1031 from robertovargas-arm/assert_format
Use standard UNIX file:line format in assert
parents
0c00c4fa
d52be21f
Changes
1
Show whitespace changes
Inline
Side-by-side
lib/stdlib/assert.c
View file @
881cf374
...
...
@@ -17,14 +17,14 @@
#if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE
void
__assert
(
const
char
*
file
,
unsigned
int
line
,
const
char
*
assertion
)
{
tf_printf
(
"ASSERT: %s
<%d> :
%s
\n
"
,
file
,
line
,
assertion
);
tf_printf
(
"ASSERT: %s
:%d:
%s
\n
"
,
file
,
line
,
assertion
);
console_flush
();
plat_panic_handler
();
}
#elif PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_INFO
void
__assert
(
const
char
*
file
,
unsigned
int
line
)
{
tf_printf
(
"ASSERT: %s
<
%d
>
\n
"
,
file
,
line
);
tf_printf
(
"ASSERT: %s
:
%d
\n
"
,
file
,
line
);
console_flush
();
plat_panic_handler
();
}
...
...
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