From 7a3abc706ef850958c0d453566d89538151f9758 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 16 Jul 2018 20:26:09 +0200 Subject: [PATCH] comedi: fix typo --- lib/nodes/comedi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nodes/comedi.c b/lib/nodes/comedi.c index 38faf9113..08c96be72 100644 --- a/lib/nodes/comedi.c +++ b/lib/nodes/comedi.c @@ -226,7 +226,7 @@ static int comedi_start_in(struct node *n) if (ret < 0) error("Invalid command for input subdevice of node '%s'", node_name(n)); - info("Input command:") + info("Input command:"); comedi_dump_cmd(&cmd, 1); ret = comedi_command(c->dev, &cmd); @@ -318,7 +318,7 @@ static int comedi_start_out(struct node *n) if (ret < 0) error("Invalid command for input subdevice of node '%s'", node_name(n)); - info("Output command:") + info("Output command:"); comedi_dump_cmd(&cmd, 1); ret = comedi_command(c->dev, &cmd);