summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorMatej Vasek <mvasek@redhat.com>2021-11-01 20:25:58 +0100
committerMatej Vasek <mvasek@redhat.com>2021-11-01 20:25:58 +0100
commit48e1cca9f8f6a9f50e317214bd87e5dfa57d9ab4 (patch)
treeeb854402a0495520bd84bb588e9cc6379e8f050a /pkg
parent62ee24bb7c94556c8ed63553d2695d3c2ac24418 (diff)
downloadpodman-48e1cca9f8f6a9f50e317214bd87e5dfa57d9ab4.tar.gz
podman-48e1cca9f8f6a9f50e317214bd87e5dfa57d9ab4.tar.bz2
podman-48e1cca9f8f6a9f50e317214bd87e5dfa57d9ab4.zip
More conforming libpod API and swagger types
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go
index 9ad3bcca0..c63cf8f0e 100644
--- a/pkg/api/handlers/types.go
+++ b/pkg/api/handlers/types.go
@@ -43,7 +43,7 @@ type ContainersPruneReport struct {
type LibpodContainersPruneReport struct {
ID string `json:"Id"`
- SpaceReclaimed int64 `json:"Space"`
+ SpaceReclaimed int64 `json:"Size"`
PruneError string `json:"Err,omitempty"`
}