fixed syntax error
This commit is contained in:
parent
d2017e94a3
commit
5edaa5b81d
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ reading_t onewire_get(void *handle) {
|
||||||
rd.value = strtof(buffer, NULL);
|
rd.value = strtof(buffer, NULL);
|
||||||
gettimeofday(&rd.tv, NULL);
|
gettimeofday(&rd.tv, NULL);
|
||||||
}
|
}
|
||||||
} while (rd.value == 85) { /* skip invalid readings */
|
} while (rd.value == 85); /* skip invalid readings */
|
||||||
|
|
||||||
return rd;
|
return rd;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue