diff options
author | Sverker Eriksson <[email protected]> | 2010-12-22 15:14:39 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-02-03 17:33:44 +0100 |
commit | 0b09ffabadd38bd2d0fa9cfa735542defc380efc (patch) | |
tree | d061b64f2ca8806f961754d78b518c9735e48437 /erts/emulator/beam/erl_db_tree.c | |
parent | 359517b5177756d871b91757160e6840e0fbfe4a (diff) | |
download | otp-0b09ffabadd38bd2d0fa9cfa735542defc380efc.tar.gz otp-0b09ffabadd38bd2d0fa9cfa735542defc380efc.tar.bz2 otp-0b09ffabadd38bd2d0fa9cfa735542defc380efc.zip |
HALFWORD ETS 32-bit arch fixes and other cleanups
Diffstat (limited to 'erts/emulator/beam/erl_db_tree.c')
-rw-r--r-- | erts/emulator/beam/erl_db_tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_db_tree.c b/erts/emulator/beam/erl_db_tree.c index d9330a3bbf..d4f02f9117 100644 --- a/erts/emulator/beam/erl_db_tree.c +++ b/erts/emulator/beam/erl_db_tree.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 1998-2010. All Rights Reserved. + * Copyright Ericsson AB 1998-2011. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -2753,7 +2753,7 @@ static Sint cmp_partly_bound(Eterm partly_bound_key, Eterm bound_key, Eterm* bk_ erts_fprintf(stderr," > "); else erts_fprintf(stderr," == "); - erts_fprintf(stderr,"%T\n",bound_key); // SVERK: printing rterm + erts_fprintf(stderr,"%T\n",bound_key); // HALFWORD BUG: printing rterm #endif return ret; } |