mirror of
https://github.com/apache/nuttx.git
synced 2026-09-04 08:04:02 +00:00
Fix Error: chip/rp2040_cyw43439.c:844:46: error: format specifies type 'unsigned long' but the argument has type 'uint32_t' (aka 'unsigned int') [-Werror,-Wformat]
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
9f685435d0
commit
c6873ff5a2
1 changed files with 2 additions and 2 deletions
|
|
@ -841,9 +841,9 @@ gspi_dev_t *rp2040_cyw_setup(uint8_t gpio_on,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
wlinfo("setup complete. gspi = 0x%08lX\n", (uint32_t) gspi);
|
||||
wlinfo("setup complete. gspi = 0x%p\n", gspi);
|
||||
|
||||
return (void *)gspi;
|
||||
return gspi;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue