From 325ea6dc40f18d78015e671975412f00f55d1dba Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Tue, 16 Jul 2024 15:13:25 +0200 Subject: [PATCH] misc: Fix formatting Signed-off-by: Jakub Jelen Reviewed-by: Sahana Prasad Reviewed-by: Eshan Kelkar --- src/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.c b/src/misc.c index 8f9e22b0..6ae7cdf1 100644 --- a/src/misc.c +++ b/src/misc.c @@ -2089,7 +2089,7 @@ ssize_t ssh_writen(int fd, const void *buf, size_t nbytes) ((const char *)buf) + total_bytes_written, nbytes - total_bytes_written); if (bytes_written == -1) { - if(errno == EINTR) { + if (errno == EINTR) { /* Ignoring errors due to signal interrupts */ continue; }