]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a function formatting warning in rephist.c
authorNick Mathewson <nickm@torproject.org>
Mon, 3 Jan 2011 16:59:47 +0000 (11:59 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 3 Jan 2011 16:59:47 +0000 (11:59 -0500)
src/or/rephist.c

index baedc132a66cc8ec962bad27b85535643e0da082..d85a8b7c3ad2e9faafe0308afdf1d34d6595a2d3 100644 (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);
 }