diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-09-16 13:39:05 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-09-16 13:44:32 +0200 |
commit | 51a15e3a712c2a28234be3a267d80af9e839c31c (patch) | |
tree | 4b3500898e7ed64705a7b0778bfcfc29719121f2 /erts/emulator/beam/erl_bif_timer.c | |
parent | 36d4d6fbe37ba9b03a157cdd0e66f3ac28921e0e (diff) | |
download | otp-51a15e3a712c2a28234be3a267d80af9e839c31c.tar.gz otp-51a15e3a712c2a28234be3a267d80af9e839c31c.tar.bz2 otp-51a15e3a712c2a28234be3a267d80af9e839c31c.zip |
erts: Remove unit in 'Time left' printout
The unit 'ms' is removed due to ease of parsing.
Diffstat (limited to 'erts/emulator/beam/erl_bif_timer.c')
-rw-r--r-- | erts/emulator/beam/erl_bif_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_timer.c b/erts/emulator/beam/erl_bif_timer.c index d67695e533..03ac97283c 100644 --- a/erts/emulator/beam/erl_bif_timer.c +++ b/erts/emulator/beam/erl_bif_timer.c @@ -616,7 +616,7 @@ erts_print_bif_timer_info(int to, void *to_arg) : btm->receiver.proc.ess->common.id); erts_print(to, to_arg, "=timer:%T\n", receiver); erts_print(to, to_arg, "Message: %T\n", btm->message); - erts_print(to, to_arg, "Time left: %u ms\n", + erts_print(to, to_arg, "Time left: %u\n", erts_time_left(&btm->tm)); } } |