提交 acf01e66 编写于 作者: J Joe Perches 提交者: Greg Kroah-Hartman

tty: hvcs: Fix odd use of strlcpy

Use the typical style of array, not the equivalent &array[0].
Signed-off-by: NJoe Perches <joe@perches.com>
Link: https://lore.kernel.org/r/1be432798311378947ec4e6051cad1235b6eccbb.1562283944.git.joe@perches.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 627a545c
......@@ -871,8 +871,8 @@ static void hvcs_set_pi(struct hvcs_partner_info *pi, struct hvcs_struct *hvcsd)
hvcsd->p_partition_ID = pi->partition_ID;
/* copy the null-term char too */
strlcpy(&hvcsd->p_location_code[0],
&pi->location_code[0], sizeof(hvcsd->p_location_code));
strlcpy(hvcsd->p_location_code, pi->location_code,
sizeof(hvcsd->p_location_code));
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册