diff options
author | 2010-06-03 17:03:33 -0400 | |
---|---|---|
committer | 2010-06-03 17:03:33 -0400 | |
commit | 95d83e38a95c9cf28ffa59611149fbba242449c4 (patch) | |
tree | 4fd644fcc627793c6a705549c9454602a8c9007a /src/restore.c | |
parent | 4d74cd31751165b671eba9a1b0936718b7f39b52 (diff) | |
download | idevicerestore-95d83e38a95c9cf28ffa59611149fbba242449c4.tar.gz idevicerestore-95d83e38a95c9cf28ffa59611149fbba242449c4.tar.bz2 |
Continuing to refactor code and add support for other devices
Diffstat (limited to 'src/restore.c')
-rw-r--r-- | src/restore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c index 90d8c0e..fd6fec2 100644 --- a/src/restore.c +++ b/src/restore.c @@ -151,7 +151,7 @@ int restore_handle_progress_msg(restored_client_t client, plist_t msg) { } if ((progress > 0) && (progress < 100)) - info("%s - Progress: %02ull%%\n", restore_progress_string(operation), progress); + info("%s - Progress: %llu%%\n", restore_progress_string(operation), progress); else info("%s\n", restore_progress_string(operation)); |