diff options
author | Nikias Bassen | 2022-03-29 07:53:05 +0200 |
---|---|---|
committer | Nikias Bassen | 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) quit_flag++; } -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) +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) { if (!client || !appid || !key) return INSTPROXY_E_INVALID_ARG; @@ -335,7 +335,7 @@ int main(int argc, char *argv[]) goto cleanup; } plist_t container = NULL; - instproxy_client_get_object_by_key_from_info_directionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container); + instproxy_client_get_object_by_key_from_info_dictionary_for_bundle_identifier(instproxy_client, bundle_identifier, "Container", &container); instproxy_client_get_path_for_bundle_identifier(instproxy_client, bundle_identifier, &path); instproxy_client_free(instproxy_client); instproxy_client = NULL; |