Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/6bf6725962ad2d79178c860801ff99f8495b3f44 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use uint64_t instead of u64 in put_dec()

Use the correct type required by do_div().

Signed-off-by: Simon Glass <sjg@chromium.org>
master
Simon Glass 11 years ago committed by Tom Rini
parent 19ea4678ca
commit 6bf6725962
  1. 2
      lib/vsprintf.c

@ -270,7 +270,7 @@ static char *put_dec_full(char *buf, unsigned q)
return buf;
}
/* No inlining helps gcc to use registers better */
static noinline char *put_dec(char *buf, u64 num)
static noinline char *put_dec(char *buf, uint64_t num)
{
while (1) {
unsigned rem;

Loading…
Cancel
Save