aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/src/crashdump_viewer.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2015-10-27 10:22:27 +0100
committerDan Gudmundsson <[email protected]>2015-10-27 10:22:27 +0100
commit4b5853e7865d6a1baab39d7345b1b8d0280a4291 (patch)
tree61699b0084530ddf47d49bb86bd54abc708a8dd5 /lib/observer/src/crashdump_viewer.erl
parentfe04061666bdf31ae894a099b266fcb1ce299fd5 (diff)
parent36707f0eac0fdb61331a8cee4917a00a301528a3 (diff)
downloadotp-4b5853e7865d6a1baab39d7345b1b8d0280a4291.tar.gz
otp-4b5853e7865d6a1baab39d7345b1b8d0280a4291.tar.bz2
otp-4b5853e7865d6a1baab39d7345b1b8d0280a4291.zip
Merge branch 'maint'
* maint: cdv: Fix crashdump ets table type observer: Show ets owner pid in crashdump viewers ets popup window erts: Detect and build on MSYS2 for windows
Diffstat (limited to 'lib/observer/src/crashdump_viewer.erl')
-rw-r--r--lib/observer/src/crashdump_viewer.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/crashdump_viewer.erl b/lib/observer/src/crashdump_viewer.erl
index f2ce51b2af..b66b4d59c9 100644
--- a/lib/observer/src/crashdump_viewer.erl
+++ b/lib/observer/src/crashdump_viewer.erl
@@ -1572,7 +1572,7 @@ get_etsinfo(Fd,EtsTable = #ets_table{details=Ds},WS) ->
get_etsinfo(Fd,EtsTable#ets_table{details=Ds#{fixed=>Val}},WS);
"Type" ->
Val = val(Fd),
- get_etsinfo(Fd,EtsTable#ets_table{details=Ds#{data_type=>Val}},WS);
+ get_etsinfo(Fd,EtsTable#ets_table{data_type=Val},WS);
"Protection" ->
Val = val(Fd),
get_etsinfo(Fd,EtsTable#ets_table{details=Ds#{protection=>Val}},WS);