Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/458a070076dc920a7106f0c8f0cfa880503ce498/test/stdint/int-types.c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#include <common.h>
|
|
#include <inttypes.h>
|
|
|
|
int test_types(void)
|
|
{
|
|
uintptr_t uintptr = 0;
|
|
uint64_t uint64 = 0;
|
|
u64 u64_val = 0;
|
|
|
|
printf("uintptr = %" PRIuPTR "\n", uintptr);
|
|
printf("uint64 = %" PRIu64 "\n", uint64);
|
|
printf("u64 = %" PRIu64 "\n", u64_val);
|
|
}
|
|
|