From: Jay Freeman (saurik) Date: Sat, 19 Nov 2016 04:50:18 +0000 (-0800) Subject: Fix a typo: verify the objects found, not the set. X-Git-Tag: v1.1.28%b1~5 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/e0c35524d9e2f829122142790bc6d1ab0c0a7afb?ds=inline Fix a typo: verify the objects found, not the set. --- diff --git a/cydo.cpp b/cydo.cpp index bed61987..d6e6f758 100644 --- a/cydo.cpp +++ b/cydo.cpp @@ -59,7 +59,7 @@ int main(int argc, char *argv[]) { } launch_data_dict_iterate(response, [=, &cydia](const char *name, launch_data_t value) { - if (launch_data_get_type(response) != LAUNCH_DATA_DICTIONARY) + if (launch_data_get_type(value) != LAUNCH_DATA_DICTIONARY) return; auto integer(launch_data_dict_lookup(value, LAUNCH_JOBKEY_PID));