Skip to content

Commit

Permalink
Merge pull request #24008 from stilwelb/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in error message
  • Loading branch information
openshift-merge-bot[bot] committed Sep 18, 2024
2 parents bb235fb + 31cdf11 commit 327c26a
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

1 comment on commit 327c26a

@packit-as-a-service
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

podman-next COPR build failed. @containers/packit-build please check.

Please sign in to comment.