diff options
author | Siri Hansen <[email protected]> | 2017-09-20 14:15:53 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2017-09-20 14:15:53 +0200 |
commit | 21f4873bd45d7bc850f91dfb7d0b0d388c0caaef (patch) | |
tree | 7bef0e848f17af97bdd0d6cc0af18e1c6172e7e7 /lib/observer/src/crashdump_viewer.erl | |
parent | 8b24be58d37a8912efdcec9cd1e354cfa41e4ef4 (diff) | |
download | otp-21f4873bd45d7bc850f91dfb7d0b0d388c0caaef.tar.gz otp-21f4873bd45d7bc850f91dfb7d0b0d388c0caaef.tar.bz2 otp-21f4873bd45d7bc850f91dfb7d0b0d388c0caaef.zip |
[cdv] Don't use old string API
Diffstat (limited to 'lib/observer/src/crashdump_viewer.erl')
-rw-r--r-- | lib/observer/src/crashdump_viewer.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/crashdump_viewer.erl b/lib/observer/src/crashdump_viewer.erl index e3c80b2400..51ff69fd69 100644 --- a/lib/observer/src/crashdump_viewer.erl +++ b/lib/observer/src/crashdump_viewer.erl @@ -800,7 +800,7 @@ do_read_file(File) -> insert_index(Tag,Id,N1+1), put_last_tag(Tag,""), DumpVsn = [list_to_integer(L) || - L<-string:tokens(Id,".")], + L<-string:lexemes(Id,".")], AddrAdj = get_bin_addr_adj(DumpVsn), indexify(Fd,AddrAdj,Rest,N1), end_progress(), |