From 4319fd0bb5991b78b492f59e57850c2d971f1002 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Mon, 11 Apr 2011 13:30:56 +0200 Subject: [PATCH] config: Fix compiler warning on 64 bits hosts --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 53f9ad0..91ad700 100644 --- a/src/config.c +++ b/src/config.c @@ -496,7 +496,7 @@ int __connman_config_load_service(GKeyFile *keyfile, const char *group, goto out; } - DBG("Saving %d bytes to %s", content_length, filename); + DBG("Saving %zu bytes to %s", content_length, service_name); if (g_file_set_contents(filename, content, content_length, NULL) == FALSE) { -- 2.7.4