From 4a2f71c3efb614136b865a5a986455aad1efb887 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Sun, 25 Mar 2007 12:03:41 +0000 Subject: [PATCH] Make use of consistent timer interface code --- core/net/rime/sabc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/rime/sabc.c b/core/net/rime/sabc.c index b4c4ee755..a32283d5a 100644 --- a/core/net/rime/sabc.c +++ b/core/net/rime/sabc.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: sabc.c,v 1.5 2007/03/20 12:26:57 adamdunkels Exp $ + * $Id: sabc.c,v 1.6 2007/03/25 12:03:41 adamdunkels Exp $ */ /** @@ -102,7 +102,7 @@ sabc_send_stubborn(struct sabc_conn *c, clock_time_t t) return 0; } send(c); - ctimer_set(&c->t, t, send, c); + sabc_set_timer(c, t); return 1; }