aboutsummaryrefslogtreecommitdiffstats
path: root/erts/include
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-03-25 17:43:09 +0100
committerLukas Larsson <[email protected]>2014-03-26 15:19:00 +0100
commitd2a5dc042c02dce5bc518eb576ea496af50e6373 (patch)
tree11d57862ce966177ad612b122cd35a81f53d4419 /erts/include
parentd28049c638f19de0f0f4c805d3efd004de417210 (diff)
downloadotp-d2a5dc042c02dce5bc518eb576ea496af50e6373.tar.gz
otp-d2a5dc042c02dce5bc518eb576ea496af50e6373.tar.bz2
otp-d2a5dc042c02dce5bc518eb576ea496af50e6373.zip
ose: Fix erts assert failed printouts
Diffstat (limited to 'erts/include')
-rw-r--r--erts/include/internal/ethr_mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/include/internal/ethr_mutex.h b/erts/include/internal/ethr_mutex.h
index ee861065c5..6c931e0cd4 100644
--- a/erts/include/internal/ethr_mutex.h
+++ b/erts/include/internal/ethr_mutex.h
@@ -354,7 +354,7 @@ void ethr_rwmutex_rwunlock(ethr_rwmutex *);
#ifdef ETHR_MTX_HARD_DEBUG
#define ETHR_MTX_HARD_ASSERT(A) \
- ((void) ((A) ? 1 : ethr_assert_failed(__FILE__, __LINE__, #A)))
+ ((void) ((A) ? 1 : ethr_assert_failed(__FILE__, __LINE__, __func__,#A)))
#else
#define ETHR_MTX_HARD_ASSERT(A) ((void) 1)
#endif