diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-09-16 13:42:03 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-09-16 13:44:41 +0200 |
commit | 683281e2362ab950810141647fc7ce3654ffc4c8 (patch) | |
tree | 891e238c6ca7fee90631d4bc51776ab124e19921 /erts/emulator/beam/erl_db_hash.c | |
parent | 51a15e3a712c2a28234be3a267d80af9e839c31c (diff) | |
download | otp-683281e2362ab950810141647fc7ce3654ffc4c8.tar.gz otp-683281e2362ab950810141647fc7ce3654ffc4c8.tar.bz2 otp-683281e2362ab950810141647fc7ce3654ffc4c8.zip |
erts: Remove space in 'Buckets' printout
Fix to ease parsing of information.
Diffstat (limited to 'erts/emulator/beam/erl_db_hash.c')
-rw-r--r-- | erts/emulator/beam/erl_db_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_db_hash.c b/erts/emulator/beam/erl_db_hash.c index 2fea4671e1..06dac8f161 100644 --- a/erts/emulator/beam/erl_db_hash.c +++ b/erts/emulator/beam/erl_db_hash.c @@ -2106,7 +2106,7 @@ static void db_print_hash(int to, void *to_arg, int show, DbTable *tbl) DbTableHash *tb = &tbl->hash; int i; - erts_print(to, to_arg, "Buckets: %d \n", NACTIVE(tb)); + erts_print(to, to_arg, "Buckets: %d\n", NACTIVE(tb)); if (show) { for (i = 0; i < NACTIVE(tb); i++) { |