summaryrefslogtreecommitdiffstats
path: root/dev/msyncclient.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev/msyncclient.c')
-rw-r--r--dev/msyncclient.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/msyncclient.c b/dev/msyncclient.c
index 6ab7c79..5fffe7a 100644
--- a/dev/msyncclient.c
+++ b/dev/msyncclient.c
@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
142 } 142 }
143 143
144 if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) { 144 if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
145 iphone_free_device(phone); 145 iphone_device_free(phone);
146 return -1; 146 return -1;
147 } 147 }
148 148
@@ -162,7 +162,7 @@ int main(int argc, char *argv[])
162 printf("All done.\n"); 162 printf("All done.\n");
163 163
164 lockdownd_client_free(client); 164 lockdownd_client_free(client);
165 iphone_free_device(phone); 165 iphone_device_free(phone);
166 166
167 return 0; 167 return 0;
168} 168}