From 432610404eb7d41645c6640164ee96da5415a212 Mon Sep 17 00:00:00 2001 From: Kosuke Morimoto Date: Tue, 5 Sep 2023 20:56:30 +0900 Subject: [PATCH] fix Signed-off-by: Kosuke Morimoto --- internal/core/malloc/malloc.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/core/malloc/malloc.go b/internal/core/malloc/malloc.go index dad36612eb4..a9c90dc9a71 100644 --- a/internal/core/malloc/malloc.go +++ b/internal/core/malloc/malloc.go @@ -50,18 +50,18 @@ type Sizes struct { } type Total struct { - Type string `xml:"fast,attr"` + Type string `xml:"type,attr"` Count int `xml:"count,attr"` Size int `xml:"size,attr"` } type System struct { - Type string `xml:"fast,attr"` + Type string `xml:"type,attr"` Size int `xml:"size,attr"` } type Aspace struct { - Type string `xml:"fast,attr"` + Type string `xml:"type,attr"` Size int `xml:"size,attr"` }