From 9f0ca608f6903192abe7dc787b09405d1df1bb0f Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 19 Nov 2007 21:24:53 +0000 Subject: [PATCH] fix r3892 oops --- libtransmission/transmission.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libtransmission/transmission.c b/libtransmission/transmission.c index 07e8e8371..5e689ed91 100644 --- a/libtransmission/transmission.c +++ b/libtransmission/transmission.c @@ -341,7 +341,8 @@ tr_close( tr_handle * h ) } void -tr_getSessionStats( const tr_handle * handle, tr_session_stats * setme ) +tr_getSessionStats( const tr_handle * handle, + tr_session_stats * setme ) { assert( handle != NULL ); assert( setme != NULL ); @@ -358,7 +359,8 @@ tr_getSessionStats( const tr_handle * handle, tr_session_stats * setme ) } void -tr_getAccumulatedStats( const tr_handle * handle, tr_session_stats * setme ) +tr_getCumulativeSessionStats( const tr_handle * handle, + tr_session_stats * setme ) { tr_getSessionStats( handle, setme ); }