Add the return type to the function definition

In commit 12c77a228e84f1ceed520b6afb53b4b64ea9def6, the return type of
the function was accidentally omitted.
This commit is contained in:
Jef Driesen 2022-11-18 20:40:44 +01:00
parent 2f3a057969
commit 6874130743

View File

@ -141,6 +141,7 @@ reefnet_sensus_parser_set_clock (dc_parser_t *abstract, unsigned int devtime, dc
}
static dc_status_t
reefnet_sensus_parser_set_atmospheric (dc_parser_t *abstract, double atmospheric)
{
reefnet_sensus_parser_t *parser = (reefnet_sensus_parser_t *) abstract;