Skip to content

Commit

Permalink
exec/util: address go-static-check linter warning
Browse files Browse the repository at this point in the history
warning: error strings should not be capitalized
  • Loading branch information
sohankunkerkar committed Jun 25, 2021
1 parent 35c6503 commit 6544b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/exec/util/blkid.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func cResultToErr(res C.result_t, device string) error {
case C.RESULT_BAD_SECTOR_SIZE:
return fmt.Errorf("logical sector size for %q was not a multiple of 512", device)
default:
return fmt.Errorf("Unknown error while handling %q. err code: %d", device, res)
return fmt.Errorf("unknown error while handling %q. err code: %d", device, res)
}
}

Expand Down

0 comments on commit 6544b42

Please sign in to comment.