base-foc: add string separators in assertion messages

Fixes #2305
This commit is contained in:
Christian Prochaska 2017-02-25 16:07:15 +01:00 committed by Christian Helmuth
parent cc78f0b20c
commit f79bcbd72a
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ namespace Fiasco {
#define ASSERT(e, s) \
do { if (!(e)) { \
Genode::raw("assertion failed: ", s, __FILE__, __LINE__); \
Genode::raw("assertion failed: ", s, " at ", __FILE__, ":", __LINE__); \
enter_kdebug("ASSERT"); \
} \
} while(0)