mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
console: Suppress unused warning asprintf result
This commit is contained in:
parent
4355eb1bc2
commit
8ce14d0406
@ -104,7 +104,8 @@ esp_err_t esp_console_cmd_register(const esp_console_cmd_t *cmd)
|
||||
/* Prepend a space before the hint. It separates command name and
|
||||
* the hint. arg_print_syntax below adds this space as well.
|
||||
*/
|
||||
asprintf(&item->hint, " %s", cmd->hint);
|
||||
int unused __attribute__((unused));
|
||||
unused = asprintf(&item->hint, " %s", cmd->hint);
|
||||
} else if (cmd->argtable) {
|
||||
/* Generate hint based on cmd->argtable */
|
||||
char *buf = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user