diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-08-03 09:39:30 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-08-03 13:19:24 +0200 |
commit | be63641349b1350c6b33976791eb89af7427de7b (patch) | |
tree | d33cccb7d3b714cf5a8959fe7891d6de6d8fdbc2 | |
parent | e850d8e1acad4b06ba212145fee67932a3417cd6 (diff) |
resolve-host: use correct format specifier
-rw-r--r-- | src/resolve-host/resolve-host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolve-host/resolve-host.c b/src/resolve-host/resolve-host.c index 1063790640..80ce9cb237 100644 --- a/src/resolve-host/resolve-host.c +++ b/src/resolve-host/resolve-host.c @@ -105,7 +105,7 @@ static int resolve_host(sd_bus *bus, const char *name) { return bus_log_parse_error(r); if (!IN_SET(family, AF_INET, AF_INET6)) { - log_debug("%s: skipping entry with family %hu (%s)", name, family, af_to_name(family) ?: "unknown"); + log_debug("%s: skipping entry with family %d (%s)", name, family, af_to_name(family) ?: "unknown"); continue; } |