summaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2017-06-25 17:18:06 -0700
committerHans Dedecker <dedeckeh@gmail.com>2017-06-26 21:27:46 +0200
commitd397e8ca5dd492a1fac2e186e2a8b91ac8e463df (patch)
treee6401f7ec1d50df70680e922696eb972b8f33f19 /system.h
parentef5f7a09a202ba6c3d2021af0b36ee32a18f680f (diff)
downloadnetifd-d397e8ca5dd492a1fac2e186e2a8b91ac8e463df.tar.gz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/system.h b/system.h
index c8ddbad..1a3d023 100644
--- a/system.h
+++ b/system.h
@@ -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