src/nnn.c | 6 +++--- diff --git a/src/nnn.c b/src/nnn.c index b4c53357f8e057bd2f72a11f3b383589fcb37f60..84c284ef9e3d9b0a67537bff3e2cbf9a3543b67c 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -546,7 +546,7 @@ "failed!", "session name: ", "'c'p / 'm'v as?", "'c'urrent / 's'el?", - "rm -rf %s file%s?", + "rm -rf %s file%s? [Esc cancels]", "limit exceeded", "'f'ile / 'd'ir / 's'ym / 'h'ard?", "'c'li / 'g'ui?", @@ -897,9 +897,9 @@ } static char confirm_force(bool selection) { - char str[32]; + char str[64]; - snprintf(str, 32, messages[MSG_FORCE_RM], + snprintf(str, 64, messages[MSG_FORCE_RM], (selection ? xitoa(nselected) : "current"), (selection ? "(s)" : "")); int r = get_input(str);