Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94479c01 authored by Jesper Nilsson's avatar Jesper Nilsson
Browse files

Add missing "struct" to in sizeof.



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

Signed-off-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
parent b5153163
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}