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

api: remove superfluous assignment

No need to assign a value to sig if the next statement using sig
is itself an assignment of a value to sig.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
master
xypron.glpk@gmx.de 8 years ago committed by Tom Rini
parent ebb3e43de4
commit 5cc9e6b7fa
  1. 2
      api/api.c

@ -625,7 +625,7 @@ int syscall(int call, int *retval, ...)
void api_init(void)
{
struct api_signature *sig = NULL;
struct api_signature *sig;
/* TODO put this into linker set one day... */
calls_table[API_RSVD] = NULL;

Loading…
Cancel
Save