Commit 25c48eb4 authored by Alessandro Rubini's avatar Alessandro Rubini

dev/sdb-storage: fix a mismatching return type

include/storage.h had int, this file had in32_t and newer compilers
complain about that. So now both are int, which fits better.
Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 54d30793
......@@ -435,7 +435,7 @@ int set_persistent_mac(uint8_t portnum, uint8_t *mac)
/* Erase SFB database in the memory */
int32_t storage_sfpdb_erase(void)
int storage_sfpdb_erase(void)
{
int ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment