diff options
author | 2014-07-09 23:03:51 +0000 | |
---|---|---|
committer | 2014-07-09 23:03:51 +0000 | |
commit | 58fdc3721c224ac585e256a5313ac683783a6d35 (patch) | |
tree | 977c1093384ac846ef5c6c7578ea781cf80d95fc | |
parent | Add work-in-progress octeon USB host controller support. (diff) | |
download | wireguard-openbsd-58fdc3721c224ac585e256a5313ac683783a6d35.tar.xz wireguard-openbsd-58fdc3721c224ac585e256a5313ac683783a6d35.zip |
small alignment tweak
-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; } |