Add missing "struct" to in sizeof.

Lead to a compile error when the struct was no longer typedef'd.

Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
This commit is contained in:
Jesper Nilsson 2010-10-28 12:04:55 +02:00
Родитель b5153163ed
Коммит 94479c017b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3731,7 +3731,7 @@ rs_ioctl(struct tty_struct *tty, struct file * file,
/* This is the ioctl to get RS485 data from user-space */
if (copy_to_user((struct serial_rs485 *) arg,
rs485data,
sizeof(serial_rs485)))
sizeof(struct serial_rs485)))
return -EFAULT;
break;
}