config: Fix compiler warning on 64 bits hosts
authorSamuel Ortiz <sameo@linux.intel.com>
Mon, 11 Apr 2011 11:30:56 +0000 (13:30 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Mon, 11 Apr 2011 11:30:56 +0000 (13:30 +0200)
src/config.c

index 53f9ad0..91ad700 100644 (file)
@@ -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) {