diff options
author | Björn Gustavsson <[email protected]> | 2010-09-24 15:02:23 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-24 15:05:44 +0200 |
commit | 0a1f48c46cf629af7d3719e94250733d1589efa1 (patch) | |
tree | d569eae667d6721d16fbb81c8795d33ee17641a0 /erts/emulator | |
parent | 9f09d3d702d183ea47d6763b01ec8bd53268d12e (diff) | |
download | otp-0a1f48c46cf629af7d3719e94250733d1589efa1.tar.gz otp-0a1f48c46cf629af7d3719e94250733d1589efa1.tar.bz2 otp-0a1f48c46cf629af7d3719e94250733d1589efa1.zip |
Remove stray use of _VOID_
In a70159b33f20a26b2674d7cf777617c5f0261a5c, the _VOID_ macro
was eliminated, but one use of it inside an "#ifdef DEBUG"
was forgotten.
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 280421952e..ecd3c8f68a 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -1499,7 +1499,7 @@ erts_cmp_timeval(SysTimeval *t1p, SysTimeval *t2p) #endif #ifdef DEBUG -void p_slpq(_VOID_); +void p_slpq(void); #endif /* utils.c */ |