Compilation fix (#2623)

This commit is contained in:
Kevin Leung 2019-01-23 01:56:54 +08:00 committed by Arnim Läuger
parent 8f6f5904a3
commit e38fc7ac66
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ static int mqtt_lwt( lua_State* L )
lua_pop( L, 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;
}