summaryrefslogtreecommitdiffstats
path: root/dev/iphoneinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev/iphoneinfo.c')
-rw-r--r--dev/iphoneinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/iphoneinfo.c b/dev/iphoneinfo.c
index 52d7c8a..790804c 100644
--- a/dev/iphoneinfo.c
+++ b/dev/iphoneinfo.c
@@ -137,7 +137,7 @@ int main(int argc, char *argv[])
137 } 137 }
138 138
139 if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) { 139 if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
140 iphone_free_device(phone); 140 iphone_device_free(phone);
141 return -1; 141 return -1;
142 } 142 }
143 143
@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
170 if (domain != NULL) 170 if (domain != NULL)
171 free(domain); 171 free(domain);
172 lockdownd_client_free(client); 172 lockdownd_client_free(client);
173 iphone_free_device(phone); 173 iphone_device_free(phone);
174 174
175 return 0; 175 return 0;
176} 176}