diff options
| author | 2010-07-14 04:47:51 +0200 | |
|---|---|---|
| committer | 2010-07-14 04:47:51 +0200 | |
| commit | 803d4af2ef109f39a512c23b74e3b99cc3bde61b (patch) | |
| tree | 2ce26f908723b4d20e02e8c4aa34e012511ff0c1 | |
| parent | 50c1616ff66ccb4e674405659cb2e6f8207bc915 (diff) | |
| download | idevicerestore-803d4af2ef109f39a512c23b74e3b99cc3bde61b.tar.gz idevicerestore-803d4af2ef109f39a512c23b74e3b99cc3bde61b.tar.bz2 | |
Name restore progress strings cosistently
| -rw-r--r-- | src/restore.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/restore.c b/src/restore.c index 7eed0ae..5e42b97 100644 --- a/src/restore.c +++ b/src/restore.c @@ -275,7 +275,7 @@ int restore_open_with_timeout(struct idevicerestore_client_t* client) {  const char* restore_progress_string(unsigned int operation) {  	switch (operation) {  	case WAIT_FOR_STORAGE: -		return "Waiting for Storage Device..."; +		return "Waiting for storage device";  	case CREATE_PARTITION_MAP:  		return "Creating partition map"; @@ -314,13 +314,13 @@ const char* restore_progress_string(unsigned int operation) {  		return "Partition NAND device";  	case WAIT_FOR_NAND: -		return "Waiting for NAND..."; +		return "Waiting for NAND";  	case WAIT_FOR_DEVICE: -		return "Waiting for Device..."; +		return "Waiting for device";  	case LOAD_KERNEL_CACHE: -		return "Loading kernelcache..."; +		return "Loading kernelcache";  	case LOAD_NOR:  		return "Loading NOR data to flash"; | 
