summaryrefslogtreecommitdiff
path: root/lib/argp-help.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-03-25 07:48:14 +0100
committerBruno Haible <bruno@clisp.org>2010-03-25 07:48:14 +0100
commitaeb898d88cddc17cefc7738940b4917e9ee27933 (patch)
treeae514cb8789f65af85031f2b7ae2d283d2133571 /lib/argp-help.c
parent4ffe8b817bffb608db5d8342fa81824aed191ba6 (diff)
downloadgnulib-aeb898d88cddc17cefc7738940b4917e9ee27933.tar.gz
Minor formatting changes.
Diffstat (limited to 'lib/argp-help.c')
-rw-r--r--lib/argp-help.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/argp-help.c b/lib/argp-help.c
index 8f96c63b91..5b6d950bea 100644
--- a/lib/argp-help.c
+++ b/lib/argp-help.c
@@ -764,7 +764,7 @@ hol_entry_cmp (const struct hol_entry *entry1,
else
/* Both entries are in clusters, we can just compare the clusters. */
return (rc = hol_cluster_cmp (entry1->cluster, entry2->cluster)) ?
- rc : HOL_ENTRY_PTRCMP(entry1, entry2);
+ rc : HOL_ENTRY_PTRCMP (entry1, entry2);
}
else if (group1 == group2)
/* The entries are both in the same cluster and group, so compare them
@@ -789,7 +789,7 @@ hol_entry_cmp (const struct hol_entry *entry1,
else if (!short1 && !short2 && long1 && long2)
/* Only long options. */
return (rc = __strcasecmp (long1, long2)) ?
- rc : HOL_ENTRY_PTRCMP(entry1, entry2);
+ rc : HOL_ENTRY_PTRCMP (entry1, entry2);
else
/* Compare short/short, long/short, short/long, using the first
character of long options. Entries without *any* valid
@@ -805,14 +805,14 @@ hol_entry_cmp (const struct hol_entry *entry1,
/* Compare ignoring case, except when the options are both the
same letter, in which case lower-case always comes first. */
return lower_cmp ? lower_cmp :
- (rc = first2 - first1) ?
- rc : HOL_ENTRY_PTRCMP(entry1, entry2);
+ (rc = first2 - first1) ?
+ rc : HOL_ENTRY_PTRCMP (entry1, entry2);
}
}
else
/* Within the same cluster, but not the same group, so just compare
groups. */
- return group_cmp (group1, group2, HOL_ENTRY_PTRCMP(entry1, entry2));
+ return group_cmp (group1, group2, HOL_ENTRY_PTRCMP (entry1, entry2));
}
/* Version of hol_entry_cmp with correct signature for qsort. */