summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/pkg-config/pkg-config6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pkg-config/pkg-config b/usr.bin/pkg-config/pkg-config
index 559ff65bbe6..f6166213585 100644
--- a/usr.bin/pkg-config/pkg-config
+++ b/usr.bin/pkg-config/pkg-config
@@ -1,5 +1,5 @@
#!/usr/bin/perl
-# $OpenBSD: pkg-config,v 1.80 2013/05/30 00:02:02 jasper Exp $
+# $OpenBSD: pkg-config,v 1.81 2014/07/09 23:03:51 jasper Exp $
# $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $
# Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org>
@@ -705,9 +705,9 @@ sub compare_numeric
{
my ($x, $y, $eq) = @_;
- return 1 if $x > $y;
+ return 1 if $x > $y;
return -1 if $x < $y;
- return 0 if (($x == $y) and ($eq == 1));
+ return 0 if (($x == $y) and ($eq == 1));
return undef;
}