diff options
author | Roberto Vargas <roberto.vargas@arm.com> | 2017-07-18 16:02:50 +0100 |
---|---|---|
committer | Roberto Vargas <roberto.vargas@arm.com> | 2017-07-19 05:57:40 +0100 |
commit | d52be21f0315fc6fc3b67a57ecdc2c80b17decd9 (patch) | |
tree | 229be1441e7d8efb7c486406769b1685dc2aae05 /lib | |
parent | ca5ba394cab0c4e7c5621a50a7bd270cb64cec97 (diff) | |
download | platform_external_arm-trusted-firmware-d52be21f0315fc6fc3b67a57ecdc2c80b17decd9.tar.gz platform_external_arm-trusted-firmware-d52be21f0315fc6fc3b67a57ecdc2c80b17decd9.tar.bz2 platform_external_arm-trusted-firmware-d52be21f0315fc6fc3b67a57ecdc2c80b17decd9.zip |
Use standard UNIX file:line format in assert
This format is understood by almost all the UNIX tools (vi, emacs, acme, ...),
and it allows these tools to jump directly to the line where the assert
failed.
Change-Id: I648fa93c7cc65f911a17dcad5e1a775ac1ae5ed4
Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdlib/assert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/assert.c b/lib/stdlib/assert.c index 41f70703e..97fab4b0f 100644 --- a/lib/stdlib/assert.c +++ b/lib/stdlib/assert.c @@ -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(); } |