diff options
author | Richard Carlsson <[email protected]> | 2018-04-17 20:16:14 +0200 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2018-05-04 10:27:20 +0200 |
commit | 3fd01b76d6940e6f161608d728a6bc679f1c9835 (patch) | |
tree | c29dba2403ffe5a719ee74278120334cbb8480b8 /lib/tools/test | |
parent | a71c186fcc9e4592016c1b2c146db7b70ee0755a (diff) | |
download | otp-3fd01b76d6940e6f161608d728a6bc679f1c9835.tar.gz otp-3fd01b76d6940e6f161608d728a6bc679f1c9835.tar.bz2 otp-3fd01b76d6940e6f161608d728a6bc679f1c9835.zip |
Use \n escape instead of integer 10
Diffstat (limited to 'lib/tools/test')
-rw-r--r-- | lib/tools/test/eprof_SUITE_data/eed.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tools/test/eprof_SUITE_data/eed.erl b/lib/tools/test/eprof_SUITE_data/eed.erl index 73531d8b99..9fe49c6f5c 100644 --- a/lib/tools/test/eprof_SUITE_data/eed.erl +++ b/lib/tools/test/eprof_SUITE_data/eed.erl @@ -66,7 +66,7 @@ loop(St0) -> loop(St2) end. -nonl([10]) -> []; +nonl([$\n]) -> []; nonl([]) -> []; nonl([H|T]) -> [H|nonl(T)]. |