commit | ae768d5fac18cd4b3ff51a4860b89fabba8ccc65 | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Tue Sep 25 10:02:51 2012 +0300 |
committer | Ohad Ben-Cohen <ohad@wizery.com> | Sun Sep 30 11:41:48 2012 +0200 |
tree | fb880925b8a1b8e2fc3a4dbf61e90281a4a36ebe | |
parent | ec4d02d9180f407c41f8310a13b34e473c671fbb [diff] |
remoteproc: snprintf() can return more than was printed snprintf() returns the number of characters which would have been printed if there were enough space. For example, on the first print if we fill up the 28 character string then it would return a number more than 30. Use scnprintf() instead because that returns the actual number of characters printed. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>