Set correct message length

This commit is contained in:
Marcin Gibula 2017-06-08 23:18:40 +02:00
parent a28ea01f0e
commit 061c462ee0
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
* @return newly created confirm select frame
*/
ConfirmSelectFrame(uint16_t channel, bool noWait = false) :
ConfirmFrame(channel, 0),
ConfirmFrame(channel, 1), //sizeof bool
_noWait(noWait)
{}