From 276053b291204fc428b75a3c3f66215de41b3c8b Mon Sep 17 00:00:00 2001 From: Andrew Hsieh Date: Mon, 27 Feb 2012 16:06:00 -0800 Subject: Use %zd instead of %d for variables of type ssize_t To generate correct 64-bit code (with -m64) Change-Id: I7cd5e0c7e8bdcb9ea3bf73df0dcda55f1cb56eec --- libs/host/CopyFile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs') diff --git a/libs/host/CopyFile.c b/libs/host/CopyFile.c index 23f1260..ca52565 100644 --- a/libs/host/CopyFile.c +++ b/libs/host/CopyFile.c @@ -137,7 +137,7 @@ static int copyFileContents(const char* dst, int dstFd, const char* src, int src return -1; } if (writeCount != readCount) { - fprintf(stderr, "acp: partial write to '%s' (%d of %d)\n", + fprintf(stderr, "acp: partial write to '%s' (%zd of %zd)\n", dst, writeCount, readCount); return -1; } -- cgit v1.1