commit | b4df20474ff76b4dbab7d991de271820383995b8 | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Mon Aug 24 22:54:21 2015 +0300 |
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | Tue Sep 01 13:52:23 2015 +0300 |
tree | 380af2745a04d4862f563d3fbb78d94f8b8366f3 | |
parent | b06ece93cf96b430587e77e01053b2b8f99cb750 [diff] |
fbdev: fix snprintf() limit in show_bl_curve() The limit should be "PAGE_SIZE - len" instead of PAGE_SIZE. Also let's use scnprintf() because snprintf() returns the number of bytes which would have been printed if there were space and scnprintf() returns the number of bytes actually printed. I don't think we are ever going to actually hit this limit in real life. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>