cli: increase buffer in pager_fallback()

The stack is large enough. Let's use a larger buffer.
This commit is contained in:
Thomas Haller 2022-10-11 08:56:06 +02:00
parent e843a7caa2
commit 619032c6d0
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -1421,7 +1421,7 @@ nmc_print(const NmcConfig *nmc_config,
static void
pager_fallback(void)
{
char buf[64];
char buf[1024];
int rb;
/* We are still in the child process (after fork() and before exec()).