Fix shadow variable

This commit is contained in:
Martin Lund 2024-05-08 10:31:32 +02:00
parent c2f910ffe3
commit 86f1b3881d

View file

@ -2279,7 +2279,7 @@ int tty_connect(void)
if (option.exec != NULL) if (option.exec != NULL)
{ {
int status = execute_shell_command(device_fd, option.exec); status = execute_shell_command(device_fd, option.exec);
exit(status); exit(status);
} }