mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-28 16:01:18 +01:00
add missing ;
This commit is contained in:
parent
5d587e34eb
commit
d4ea8664ee
@ -462,7 +462,7 @@ void set_remaining_time(timex_t *t, uint32_t time){
|
||||
timex_t tmp = {time, 0};
|
||||
|
||||
timex_t now;
|
||||
vtimer_now(&now)
|
||||
vtimer_now(&now);
|
||||
*t = timex_add(now, tmp);
|
||||
}
|
||||
|
||||
|
||||
@ -300,7 +300,7 @@ lowpan_reas_buf_t *new_packet_buffer(uint16_t datagram_size, uint16_t datagram_t
|
||||
new_buf->packet_size = datagram_size;
|
||||
|
||||
timex_t now;
|
||||
vtimer_now(&now)
|
||||
vtimer_now(&now);
|
||||
new_buf->timestamp = now.microseconds;
|
||||
|
||||
if ((current_buf == NULL) && (temp_buf == NULL))
|
||||
@ -532,7 +532,7 @@ void check_timeout(void)
|
||||
int count = 0;
|
||||
|
||||
timex_t now;
|
||||
vtimer_now(&now)
|
||||
vtimer_now(&now);
|
||||
cur_time = now.microseconds;
|
||||
temp_buf = head;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user