mirror of
https://github.com/containerd/containerd.git
synced 2026-07-11 00:59:42 +00:00
In many cases code is calling errors.Wrapf with an arbitrary string instead of a format string. This causes confusing errors when the wrapped error message contains '%' characters. This change replaces such calls with calls to errors.Wrap. Signed-off-by: John Starks <jostarks@microsoft.com>