summaryrefslogtreecommitdiff
path: root/lib/vsprintf.c
diff options
context:
space:
mode:
authorLukasz Majewski <l.majewski@samsung.com>2012-12-11 10:09:42 (GMT)
committerTom Rini <trini@ti.com>2012-12-13 18:46:02 (GMT)
commit3ec44111aa33f568493f565285a3a519ef38e1dc (patch)
tree8348dda2775389447fd23cb0b076b5b5a2b5657b /lib/vsprintf.c
parentcaddc17f3019a437b972cd04a8c9a9cbea344def (diff)
downloadu-boot-fsl-qoriq-3ec44111aa33f568493f565285a3a519ef38e1dc.tar.xz
vsprintf:fix: Change type returned by ustrtoul
The ustrtoul shall convert string defined size (e.g. 1GiB) to unsigned long type (as its name implies). Up till now it had returned int, which might cause problems with large numbers (GiB range), when interpreted as U2 signed numbers. Signed-off-by: Lukasz Majewski <l.majewski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'lib/vsprintf.c')
-rw-r--r--lib/vsprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index b7a79c0..3c432f8 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -103,7 +103,7 @@ long simple_strtol(const char *cp, char **endp, unsigned int base)
return simple_strtoul(cp, endp, base);
}
-int ustrtoul(const char *cp, char **endp, unsigned int base)
+unsigned long ustrtoul(const char *cp, char **endp, unsigned int base)
{
unsigned long result = simple_strtoul(cp, endp, base);
switch (**endp) {