diff options
-rw-r--r-- | binding/bluetooth-pbap-binding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binding/bluetooth-pbap-binding.c b/binding/bluetooth-pbap-binding.c index e2f5c55..13421e5 100644 --- a/binding/bluetooth-pbap-binding.c +++ b/binding/bluetooth-pbap-binding.c @@ -170,7 +170,7 @@ static char *get_vcard_xfer(gchar *filename) fseek(fp, 0L, SEEK_SET); n = fread(vcard_data, 1, size, fp); if (n != size) { - AFB_ERROR("Read only %ld/%ld bytes from %s", n, size, filename); + AFB_ERROR("Read only %zu/%zu bytes from %s", n, size, filename); return NULL; } |