diff options
| author | 2022-03-29 07:53:05 +0200 | |
|---|---|---|
| committer | 2022-03-29 07:53:05 +0200 | |
| commit | b200d5ebb327b127a4aacc7c629fdfbcffed7651 (patch) | |
| tree | 472b4ccbb1f61c7ab18b396a180fbfc383e9aab5 | |
| parent | 10003bcd970eed414b09eb567d36facbfe92cecc (diff) | |
| download | libimobiledevice-b200d5ebb327b127a4aacc7c629fdfbcffed7651.tar.gz libimobiledevice-b200d5ebb327b127a4aacc7c629fdfbcffed7651.tar.bz2 | |
tools: Correct misspelled directionary -> dictionary in function name
| -rw-r--r-- | tools/idevicedebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/idevicedebug.c b/tools/idevicedebug.c index 74ce069..4169920 100644 --- a/tools/idevicedebug.c +++ b/tools/idevicedebug.c | |||
| @@ -61,7 +61,7 @@ static void on_signal(int sig) | |||
| 61 | quit_flag++; | 61 | quit_flag++; |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | static instproxy_error_t instproxy_client_get_object_by_key_from_info_directionary_for_bundle_identifier(instproxy_client_t client, const char* appid, const char* key, plist_t* node) | 64 | static instproxy_error_t instproxy_client_get_object_by_key_from_info_dictionary_for_bundle_identifier(instproxy_client_t client, const char* appid, const char* key, plist_t* node) |
| 65 | { | 65 | { |
| 66 | if (!client || !appid || !key) | 66 | if (!client || !appid || !key) |
| 67 | return INSTPROXY_E_INVALID_ARG; | 67 | return INSTPROXY_E_INVALID_ARG; |
| @@ -335,7 +335,7 @@ int main(int argc, char *argv[]) | |||
| 335 | goto cleanup; | 335 | goto cleanup; |
| 336 | } | 336 | } |
| 337 | plist_t container = NULL; | 337 | plist_t container = NULL; |
| 338 | instproxy_client_get_object_by_key_from_info_directionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container); | 338 | instproxy_client_get_object_by_key_from_info_dictionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container); |
| 339 | instproxy_client_get_path_for_bundle_identifier(instproxy_client, bundle_identifier, &path); | 339 | instproxy_client_get_path_for_bundle_identifier(instproxy_client, bundle_identifier, &path); |
| 340 | instproxy_client_free(instproxy_client); | 340 | instproxy_client_free(instproxy_client); |
| 341 | instproxy_client = NULL; | 341 | instproxy_client = NULL; |
