Skip to content

Commit

Permalink
fix typo in error message
Browse files Browse the repository at this point in the history
Fixes: containers#24001

Signed-off-by: Brad Stilwell <[email protected]>
  • Loading branch information
stilwelb committed Sep 18, 2024
1 parent 04d193d commit 31cdf11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpod/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 31cdf11

Please sign in to comment.