diff options
author | Hans Bolinder <[email protected]> | 2013-02-20 09:27:40 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-02-20 09:27:40 +0100 |
commit | 7b8c2514f765d0769902ec828b7aedd075210ca9 (patch) | |
tree | 9bb10186e23fdb8ff988d162ac5bd31ab3baebe6 /lib/stdlib/src/c.erl | |
parent | ebc66af659af6f33847e1603c5f2257d5379eaf4 (diff) | |
parent | d36e25df20fe0bf7490bae57de17fc882b10a25c (diff) | |
download | otp-7b8c2514f765d0769902ec828b7aedd075210ca9.tar.gz otp-7b8c2514f765d0769902ec828b7aedd075210ca9.tar.bz2 otp-7b8c2514f765d0769902ec828b7aedd075210ca9.zip |
Merge branch 'hb/stdlib/unicode_corrections/OTP-10820'
* hb/stdlib/unicode_corrections/OTP-10820:
Use ~ts for filenames
Diffstat (limited to 'lib/stdlib/src/c.erl')
-rw-r--r-- | lib/stdlib/src/c.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/c.erl b/lib/stdlib/src/c.erl index e31ae6b9ef..91d317489c 100644 --- a/lib/stdlib/src/c.erl +++ b/lib/stdlib/src/c.erl @@ -512,7 +512,7 @@ m(M) -> print_object_file(Mod) -> case code:is_loaded(Mod) of {file,File} -> - format("Object file: ~s\n", [File]); + format("Object file: ~ts\n", [File]); _ -> ignore end. |