From dad3374b4fd8558b32d0444c7c56989021555cd4 Mon Sep 17 00:00:00 2001 From: Shawn Boyette Date: Wed, 7 Jan 2009 14:45:57 +0000 Subject: [PATCH] explicitizing lastscore comparison --- compress_fingerprints | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compress_fingerprints b/compress_fingerprints index 72f84a8..4300429 100755 --- a/compress_fingerprints +++ b/compress_fingerprints @@ -42,9 +42,9 @@ sub populate_fingerprint { $fp{sha1} = sha1_base64($stripped); # make sure file is sorted properly - if ($lastscore and $fp{compact} > $lastscore) { + if ($lastscore and ($fp{compact} > $lastscore)) { print "Input file is sorted improperly or unsorted.\n"; - die "Sort descending (sort -ru) and rerun this script.\n"; + die "Sort descending (sort -r) and rerun this script.\n"; } $lastscore = $fp{compact}; -- 1.7.2.5