This is an automated email from the ASF dual-hosted git repository. simbit18 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 7d13ee204b6fb8545d5eac3b5a1eae9cde3ba14d Author: Mihai Pacuraru <[email protected]> AuthorDate: Sun Mar 1 22:50:09 2026 +0200 examples/mqttc: Fix mqtt_init() failed message typo (ERRPR -> ERROR). Modify the message logged when mqtt_init() failed to execute properly. Signed-off-by: Mihai Pacuraru <[email protected]> --- examples/mqttc/mqttc_pub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mqttc/mqttc_pub.c b/examples/mqttc/mqttc_pub.c index 9beae6885..306df6dcc 100644 --- a/examples/mqttc/mqttc_pub.c +++ b/examples/mqttc/mqttc_pub.c @@ -528,7 +528,7 @@ int main(int argc, FAR char *argv[]) NULL); if (mqtterr != MQTT_OK) { - printf("ERRPR! mqtt_init() failed.\n"); + printf("ERROR! mqtt_init() failed.\n"); goto err_with_conn; }
