diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-07 07:49:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 07:49:49 -0800 |
commit | d0b166023f0d909080f733a40a3f0606c9ad7509 (patch) | |
tree | c5507f5c7a248252a819cdfa765e767c9faf531e /libpod/lock/shm/shm_lock.go | |
parent | a219431a317a2b6d9647ce81b7c845345e51b7da (diff) | |
parent | eba89259a5938f047d78b74c5bbbc908f8ff4be8 (diff) | |
download | podman-d0b166023f0d909080f733a40a3f0606c9ad7509.tar.gz podman-d0b166023f0d909080f733a40a3f0606c9ad7509.tar.bz2 podman-d0b166023f0d909080f733a40a3f0606c9ad7509.zip |
Merge pull request #2083 from mheon/shm_locking_fixes
Address lingering review comments from SHM locking PR
Diffstat (limited to 'libpod/lock/shm/shm_lock.go')
-rw-r--r-- | libpod/lock/shm/shm_lock.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/lock/shm/shm_lock.go b/libpod/lock/shm/shm_lock.go index be5e5148f..87d28e5c1 100644 --- a/libpod/lock/shm/shm_lock.go +++ b/libpod/lock/shm/shm_lock.go @@ -36,7 +36,7 @@ type SHMLocks struct { // nolint // size used by the underlying implementation. func CreateSHMLock(path string, numLocks uint32) (*SHMLocks, error) { if numLocks == 0 { - return nil, errors.Wrapf(syscall.EINVAL, "number of locks must greater than 0 0") + return nil, errors.Wrapf(syscall.EINVAL, "number of locks must be greater than 0") } locks := new(SHMLocks) @@ -65,7 +65,7 @@ func CreateSHMLock(path string, numLocks uint32) (*SHMLocks, error) { // segment was created with. func OpenSHMLock(path string, numLocks uint32) (*SHMLocks, error) { if numLocks == 0 { - return nil, errors.Wrapf(syscall.EINVAL, "number of locks must greater than 0") + return nil, errors.Wrapf(syscall.EINVAL, "number of locks must be greater than 0") } locks := new(SHMLocks) |