diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-10 07:59:45 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-02-10 07:59:45 +0000 |
commit | 4051a5afbfc92873af44d47ae6613d7bd17f7433 (patch) | |
tree | 09afe1ad6bded8815a058ef6476ea4481d9a032a /src/ipcpd/normal/main.c | |
parent | 0557bc02b963bab6f690b410fe937a9f487a84ba (diff) | |
parent | aa1643ae393d9460bea8e2922c9cc0a3e6caf63d (diff) | |
download | ouroboros-4051a5afbfc92873af44d47ae6613d7bd17f7433.tar.gz ouroboros-4051a5afbfc92873af44d47ae6613d7bd17f7433.zip |
Merged in dstaesse/ouroboros/be-bsd (pull request #368)
Be bsd
Diffstat (limited to 'src/ipcpd/normal/main.c')
-rw-r--r-- | src/ipcpd/normal/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ipcpd/normal/main.c b/src/ipcpd/normal/main.c index b69bfe28..69f24fce 100644 --- a/src/ipcpd/normal/main.c +++ b/src/ipcpd/normal/main.c @@ -47,6 +47,7 @@ #include <string.h> #include <errno.h> #include <assert.h> +#include <inttypes.h> #define DLR "/" #define DIF_PATH DLR DIF_NAME @@ -146,7 +147,7 @@ static int boot_components(void) len = rib_read(DIF_PATH, &buf, 256); if (len < 0) { - log_err("Failed to read DIF name: %ld.", len); + log_err("Failed to read DIF name: %zd.", len); return -1; } @@ -182,7 +183,7 @@ static int boot_components(void) return -1; } - log_dbg("IPCP got address %lu.", ipcpi.address); + log_dbg("IPCP got address %" PRIu64 ".", ipcpi.address); log_dbg("Starting ribmgr."); |