summaryrefslogtreecommitdiff
path: root/cgi-bin/help-index.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-07-15 01:21:40 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-07-15 01:21:40 +0000
commit1f0275e3cc0bc5fbe11e3bffd54581aa05c9c764 (patch)
treefac6166e65e5ecf207f69d77e00529a7337d91ac /cgi-bin/help-index.c
parent4509bb49335b3edfdb1b03d83d6cd05890968b59 (diff)
downloadcups-1f0275e3cc0bc5fbe11e3bffd54581aa05c9c764.tar.gz
Merge changes from CUPS 1.4svn-r7715.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@859 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cgi-bin/help-index.c')
-rw-r--r--cgi-bin/help-index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi-bin/help-index.c b/cgi-bin/help-index.c
index cb88aee17..9b40252bf 100644
--- a/cgi-bin/help-index.c
+++ b/cgi-bin/help-index.c
@@ -1297,7 +1297,7 @@ help_sort_by_score(help_node_t *n1, /* I - First node */
n2, n2->score, n2->section ? n2->section : "", n2->text));
if (n1->score != n2->score)
- return (n1->score - n2->score);
+ return (n2->score - n1->score);
if (n1->section && !n2->section)
return (1);