Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6bc7efe8efa627077f8f65d01dbb762fc9356a2f
Commit:     6bc7efe8efa627077f8f65d01dbb762fc9356a2f
Parent:     e961811fcde4202ae5c3c9ce81dcfc244e8959bb
Author:     Ian McDonald <[EMAIL PROTECTED]>
AuthorDate: Mon May 28 16:37:45 2007 -0300
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Jul 10 22:15:06 2007 -0700

    loss_interval: Fix timeval initialisation
    
    When compiling with EXTRA_CFLAGS=-W noticed that tstamp is not initialised
    correctly in dccp_li_calc_first_li.
    
    Signed-off-by: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]>
    Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
 net/dccp/ccids/ccid3.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 2d203ae..9686a8d 100644
--- a/net/dccp/ccids/ccid3.c
+++ b/net/dccp/ccids/ccid3.c
@@ -829,7 +829,7 @@ static u32 ccid3_hc_rx_calc_first_li(struct sock *sk)
        struct dccp_rx_hist_entry *entry, *next, *tail = NULL;
        u32 x_recv, p;
        suseconds_t rtt, delta;
-       struct timeval tstamp = { 0, };
+       struct timeval tstamp = { 0, 0 };
        int interval = 0;
        int win_count = 0;
        int step = 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to