From 14b2b2b7c2db83ef1413a7469608f655cd15958e Mon Sep 17 00:00:00 2001 From: Charles Lindsay Date: Mon, 20 Jan 2014 19:21:25 -0800 Subject: [PATCH] Fix apparent typo Docker-DCO-1.1-Signed-off-by: Charles Lindsay (github: chazomaticus) --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index 13c69c5ff..e5757ae36 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -560,7 +560,7 @@ func (k *KernelVersionInfo) String() string { } // Compare two KernelVersionInfo struct. -// Returns -1 if a < b, = if a == b, 1 it a > b +// Returns -1 if a < b, 0 if a == b, 1 it a > b func CompareKernelVersion(a, b *KernelVersionInfo) int { if a.Kernel < b.Kernel { return -1