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 <mpacuraru@protonmail.com>
This commit is contained in:
Mihai Pacuraru 2026-03-01 22:50:09 +02:00 committed by simbit18
parent c46ed184ed
commit 7d13ee204b

View file

@ -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;
}