From b200d5ebb327b127a4aacc7c629fdfbcffed7651 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 29 Mar 2022 07:53:05 +0200 Subject: tools: Correct misspelled directionary -> dictionary in function name --- tools/idevicedebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/idevicedebug.c') 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; -- cgit v1.1-32-gdbae