correct indentation; no functional change

ok tb@
This commit is contained in:
jsg
2024-04-23 13:34:51 +00:00
parent e8530c9fee
commit ea9f416c99
2 changed files with 5 additions and 5 deletions

View File

@@ -806,10 +806,10 @@ cmdq_running(struct client *c)
struct cmdq_list *queue = cmdq_get(c);
if (queue->item == NULL)
return (NULL);
if (queue->item->flags & CMDQ_WAITING)
return (NULL);
return (queue->item);
return (NULL);
if (queue->item->flags & CMDQ_WAITING)
return (NULL);
return (queue->item);
}
/* Print a guard line. */