Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f51886bb authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "ion_test.c: Fix c/p error in arg parse."

parents 00857608 b81e1859
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ int main(int argc, char* argv[]) {
        case 'p':
            prot = 0;
            prot |= strstr(optarg, "MAP_PRIVATE") ? MAP_PRIVATE : 0;
            prot |= strstr(optarg, "MAP_SHARED") ? MAP_PRIVATE : 0;
            prot |= strstr(optarg, "MAP_SHARED") ? MAP_SHARED : 0;
            break;
        case 'f':
            alloc_flags = atol(optarg);