diff options
author | Rosen Penev <rosenp@gmail.com> | 2017-06-25 17:18:06 -0700 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2017-06-26 21:27:46 +0200 |
commit | d397e8ca5dd492a1fac2e186e2a8b91ac8e463df (patch) | |
tree | e6401f7ec1d50df70680e922696eb972b8f33f19 /system.h | |
parent | ef5f7a09a202ba6c3d2021af0b36ee32a18f680f (diff) |
netifd: Fix printf calls + function declarations.
cppcheck found printf functions with signed instead of unsigned
formats. Fix those as well as some non-matching function
declarations.
Signed-off by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'system.h')
-rw-r--r-- | system.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,6 +216,6 @@ time_t system_get_rtime(void); void system_fd_set_cloexec(int fd); -int system_update_ipv6_mtu(struct device *device, int mtu); +int system_update_ipv6_mtu(struct device *dev, int mtu); #endif |