diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2014-07-09 23:03:52 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2014-07-09 23:03:52 +0000 |
commit | f6b1608c2132e5f0fe292c36b6334ee958390071 (patch) | |
tree | 508b61934c1ed02badf1760f5100aaa887facfdd /usr.bin | |
parent | 2249a6b944cb14e647edd4c519ad9c7f9bc812cc (diff) |
small alignment tweak
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/pkg-config/pkg-config | 6 |
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; } |