commit | bef0dc065f772a9d9d6df33c9bb601002d5e8a7e | [log] [tgz] |
---|---|---|
author | Ben Marsh <ben.marsh@helvar.com> | Mon Jan 29 11:37:10 2024 +0000 |
committer | David Leach <david.leach@nxp.com> | Mon Jan 29 10:25:32 2024 -0600 |
tree | e93272691847382d0ae51014d53a21de75444084 | |
parent | b8556d0d79770825952c13ddadc4782707163e2f [diff] |
doc: mqtt: Fix incorrect usage of poll() The MQTT docs used K_MSEC() to provide the timeout parameter to poll(). Doing this causes a compilation error as poll() expects it's third parameter to be of type int, not k_timeout_t. Signed-off-by: Ben Marsh <ben.marsh@helvar.com>