summaryrefslogtreecommitdiffstats
path: root/gatchat
diff options
context:
space:
mode:
Diffstat (limited to 'gatchat')
-rw-r--r--gatchat/gattty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gatchat/gattty.c b/gatchat/gattty.c
index 5ac733c3..f901076f 100644
--- a/gatchat/gattty.c
+++ b/gatchat/gattty.c
@@ -278,7 +278,7 @@ GIOChannel *g_at_tty_open_qcdm(const char *tty)
ti.c_cflag &= ~(CSIZE | CSTOPB | PARENB);
ti.c_cflag |= (B115200 | CS8);
- if (tcsetattr (fd, TCSANOW, &ti) < 0) {
+ if (tcsetattr(fd, TCSANOW, &ti) < 0) {
close(fd);
return NULL;
}