1
0
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:
Christian Mehlis 2013-06-14 20:37:39 +02:00
parent 5d587e34eb
commit d4ea8664ee
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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;