summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2020-07-09 06:34:30 +0200
committerGravatar Nikias Bassen2020-07-09 06:34:30 +0200
commit8ebee55718190c5bec5fb24128f2e3b986174397 (patch)
treee93a9c7baf689777b5c5184b1b257f98fd3ac017 /src/idevicerestore.c
parentac0119399652c096547e41411076f75dc4d5bdf9 (diff)
downloadidevicerestore-8ebee55718190c5bec5fb24128f2e3b986174397.tar.gz
idevicerestore-8ebee55718190c5bec5fb24128f2e3b986174397.tar.bz2
Fix 'Unable get path ...' error messages to say 'Unable to get path ...'
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r--src/idevicerestore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index 0148974..7653125 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -901,7 +901,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client)
// Get filesystem name from build identity
char* fsname = NULL;
if (build_identity_get_component_path(build_identity, "OS", &fsname) < 0) {
- error("ERROR: Unable get path for filesystem component\n");
+ error("ERROR: Unable to get path for filesystem component\n");
return -1;
}