Fix return void in non-void function

This commit is contained in:
Javier Arribas 2019-04-23 12:32:12 +02:00
parent 547559c0b8
commit 2e69b62ac0
1 changed files with 4 additions and 0 deletions

View File

@ -329,6 +329,10 @@ bool gps_l1_ca_telemetry_decoder_gs::decode_subframe()
return false;
}
}
else
{
return false;
}
}