Fix a function formatting warning in rephist.c

This commit is contained in:
Nick Mathewson 2011-01-03 11:59:47 -05:00
parent 66039d9843
commit 40ef9087cf

View File

@ -1996,7 +1996,8 @@ rep_hist_exit_stats_term(void)
/** Helper for qsort: compare two ints. */
static int
_compare_int(const void *x, const void *y) {
_compare_int(const void *x, const void *y)
{
return (*(int*)x - *(int*)y);
}