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

Commit b81e1859 authored by Steven Moreland's avatar Steven Moreland
Browse files

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

Bug/Test: N/A

Change-Id: Iad1ac3f057ed153429780242e138cec58e8ee764
parent c415d00f
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);