diff options
author | Hans Bolinder <[email protected]> | 2017-07-06 12:48:00 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2017-09-05 11:02:26 +0200 |
commit | 6086776a4b8c953702cac7bcc2763cd1ad259e88 (patch) | |
tree | de2c07ba7a19312d24dfa837fbf44c7b9f7f0257 /lib/stdlib/src/dets_utils.erl | |
parent | d88c1c73f733f57e1a176639186bd5d99d585a12 (diff) | |
download | otp-6086776a4b8c953702cac7bcc2763cd1ad259e88.tar.gz otp-6086776a4b8c953702cac7bcc2763cd1ad259e88.tar.bz2 otp-6086776a4b8c953702cac7bcc2763cd1ad259e88.zip |
stdlib : Improve handling of Unicode
Diffstat (limited to 'lib/stdlib/src/dets_utils.erl')
-rw-r--r-- | lib/stdlib/src/dets_utils.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/dets_utils.erl b/lib/stdlib/src/dets_utils.erl index da6ebd18f2..17f55ebdc2 100644 --- a/lib/stdlib/src/dets_utils.erl +++ b/lib/stdlib/src/dets_utils.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2001-2016. All Rights Reserved. +%% Copyright Ericsson AB 2001-2017. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -387,7 +387,7 @@ corrupt_reason(Head, Reason0) -> corrupt(Head, Error) -> case get(verbose) of yes -> - error_logger:format("** dets: Corrupt table ~p: ~tp\n", + error_logger:format("** dets: Corrupt table ~tp: ~tp\n", [Head#head.name, Error]); _ -> ok end, |