Commit e38fc7ac authored by Kevin Leung's avatar Kevin Leung Committed by Arnim Läuger
Browse files

Compilation fix (#2623)

parent 8f6f5904
...@@ -553,7 +553,7 @@ static int mqtt_lwt( lua_State* L ) ...@@ -553,7 +553,7 @@ static int mqtt_lwt( lua_State* L )
lua_pop( L, n ); lua_pop( L, n );
NODE_DBG("Set LWT topic '%s', qos %d, retain %d, len %d\n", NODE_DBG("Set LWT topic '%s', qos %d, retain %d, len %d\n",
mqtt_cfg->lwt_topic, mqtt_cfg->config.lwt_qos, mqtt_cfg->config.lwt_retain, mqtt_cfg->lwt_msg_len); mqtt_cfg->lwt_topic, mqtt_cfg->config.lwt_qos, mqtt_cfg->config.lwt_retain, mqtt_cfg->config.lwt_msg_len);
return 0; return 0;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment