Commit e39dabc8 authored by David S. Miller's avatar David S. Miller

[PROMCON]: Fix type in vc_resize call.

parent 9b7c59b1
......@@ -183,7 +183,7 @@ promcon_init(struct vc_data *conp, int init)
}
if (!init) {
if (conp->vc_cols != pw + 1 || conp->vc_rows != ph + 1)
vc_resize(conp->unit, pw + 1, ph + 1);
vc_resize(conp->vc_num, pw + 1, ph + 1);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment