diff options
author | Hans Bolinder <[email protected]> | 2013-02-19 14:21:28 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-02-19 14:31:52 +0100 |
commit | d36e25df20fe0bf7490bae57de17fc882b10a25c (patch) | |
tree | 4a65c850b48de2e5b7d5406a616d2b22be941699 /lib/stdlib/src/c.erl | |
parent | e6613acf5a29c882d4673c6a8371e03523f9590c (diff) | |
download | otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.tar.gz otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.tar.bz2 otp-d36e25df20fe0bf7490bae57de17fc882b10a25c.zip |
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. |