From 31cdf1197b4a3e413a100ac03505dc6b45ac52cf Mon Sep 17 00:00:00 2001 From: Brad Stilwell Date: Wed, 18 Sep 2024 12:49:44 -0400 Subject: [PATCH] fix typo in error message Fixes: containers/podman#24001 Signed-off-by: Brad Stilwell --- libpod/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpod/info.go b/libpod/info.go index 24e2fd910e..81b3e8a010 100644 --- a/libpod/info.go +++ b/libpod/info.go @@ -229,7 +229,7 @@ func (r *Runtime) storeInfo() (*define.StoreInfo, error) { var grStats syscall.Statfs_t if err := syscall.Statfs(r.store.GraphRoot(), &grStats); err != nil { - return nil, fmt.Errorf("unable to collect graph root usasge for %q: %w", r.store.GraphRoot(), err) + return nil, fmt.Errorf("unable to collect graph root usage for %q: %w", r.store.GraphRoot(), err) } allocated := uint64(grStats.Bsize) * grStats.Blocks info := define.StoreInfo{