From: Jay Freeman (saurik) Date: Sat, 1 Dec 2012 12:42:27 +0000 (-0800) Subject: Use || instead of |... not certain how that happnened. X-Git-Tag: v1.1.0~3 X-Git-Url: https://git.saurik.com/ldid.git/commitdiff_plain/ad77e97634381bfd43c31b608ffd126bb5e9425e Use || instead of |... not certain how that happnened. --- diff --git a/ldid.cpp b/ldid.cpp index 438866d..807c333 100644 --- a/ldid.cpp +++ b/ldid.cpp @@ -995,7 +995,7 @@ int main(int argc, const char *argv[]) { if (flag_p) printf("path%zu='%s'\n", filei, file.c_str()); - FatHeader fat_header(Map(temp == NULL ? path : temp, !(flag_R | flag_T | flag_s | flag_S | flag_O | flag_D))); + FatHeader fat_header(Map(temp == NULL ? path : temp, !(flag_R || flag_T || flag_s || flag_S || flag_O || flag_D))); struct linkedit_data_command *signature(NULL); _foreach (mach_header, fat_header.GetMachHeaders()) {