summaryrefslogtreecommitdiff
path: root/libiberty/partition.c
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2000-06-08 09:29:53 +0200
committerPhilippe De Muyter <phdm@gcc.gnu.org>2000-06-08 07:29:53 +0000
commit48f3e29b3804ae097bd90258457de373ed02dd80 (patch)
tree999aee73b1806e604e7b73860639851ee3697973 /libiberty/partition.c
parent5667abce2904b9b040ffb51d79da04545503bf6c (diff)
cp-demangle.c (stdio.h): File included unconditionaly.
* cp-demangle.c (stdio.h): File included unconditionaly. (template_arg_list_new): Parameter list is PARAMS ((void)), not (). * dyn-string.c (stdio.h): File included. * partition.c (partition_print): No `&' needed to take the address of a function. From-SVN: r34450
Diffstat (limited to 'libiberty/partition.c')
-rw-r--r--libiberty/partition.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/partition.c b/libiberty/partition.c
index 6975af49594..a5a734937ae 100644
--- a/libiberty/partition.c
+++ b/libiberty/partition.c
@@ -177,7 +177,7 @@ partition_print (part, fp)
c = elements[c].next - elements;
}
/* Sort them. */
- qsort ((void *) class_elements, count, sizeof (int), &elem_compare);
+ qsort ((void *) class_elements, count, sizeof (int), elem_compare);
/* Print them. */
fputc ('(', fp);
for (i = 0; i < count; ++i)