diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2011-04-11 13:30:56 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-04-11 13:30:56 +0200 |
commit | 4319fd0bb5991b78b492f59e57850c2d971f1002 (patch) | |
tree | 8a12d7f2823810f281e3ae8e9f8fdb262cf20326 /src/config.c | |
parent | 57a27caa37897d4bccb5b750ecfbc2c52857e361 (diff) | |
download | connman-4319fd0bb5991b78b492f59e57850c2d971f1002.tar.gz connman-4319fd0bb5991b78b492f59e57850c2d971f1002.tar.bz2 connman-4319fd0bb5991b78b492f59e57850c2d971f1002.zip |
config: Fix compiler warning on 64 bits hosts
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 53f9ad0e..91ad700d 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) { |