gatchat: Fix minor whitespace mistake

This commit is contained in:
Marcel Holtmann 2011-08-04 23:54:33 +02:00
parent 4b896ee834
commit b996d34f2f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}