diff options
| author | 2010-03-16 02:34:54 +0100 | |
|---|---|---|
| committer | 2010-03-16 02:34:54 +0100 | |
| commit | dd48a2c0051be9e0f7a8ae99b035ee3c3a333dd4 (patch) | |
| tree | ae2a646992c3c75580a591c05c3ae169cc1159f3 /dev/filerelaytest.c | |
| parent | e7b4ecae1c1143ce77c4c920de74029da3ecf9ee (diff) | |
| download | libimobiledevice-dd48a2c0051be9e0f7a8ae99b035ee3c3a333dd4.tar.gz libimobiledevice-dd48a2c0051be9e0f7a8ae99b035ee3c3a333dd4.tar.bz2 | |
Fix warning due to unused printf format specificer in filerelaytest tool
Diffstat (limited to 'dev/filerelaytest.c')
| -rw-r--r-- | dev/filerelaytest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/filerelaytest.c b/dev/filerelaytest.c index caaa491..6e611c0 100644 --- a/dev/filerelaytest.c +++ b/dev/filerelaytest.c | |||
| @@ -86,7 +86,7 @@ int main(int argc, char **argv) | |||
| 86 | while (idevice_connection_receive(dump, buf, 4096, &len) == IDEVICE_E_SUCCESS) { | 86 | while (idevice_connection_receive(dump, buf, 4096, &len) == IDEVICE_E_SUCCESS) { |
| 87 | fwrite(buf, 1, len, f); | 87 | fwrite(buf, 1, len, f); |
| 88 | cnt += len; | 88 | cnt += len; |
| 89 | printf(".", len); | 89 | printf("."); |
| 90 | len = 0; | 90 | len = 0; |
| 91 | } | 91 | } |
| 92 | printf("\n"); | 92 | printf("\n"); |
