commit | 9d3cecff56ab9284215eeced8ea46ae24d6b56aa | [log] [tgz] |
---|---|---|
author | Steven Moreland <smoreland@google.com> | Wed Feb 14 13:11:11 2018 -0800 |
committer | Steven Moreland <smoreland@google.com> | Wed Feb 14 13:12:22 2018 -0800 |
tree | 9676d80085c01d3c31bfa0be4491ab909ada5918 | |
parent | f139b6d6eec85ed541e8161c2ba4c084c47e01cf [diff] |
ion_test.c: Fix c/p error in arg parse. Bug/Test: N/A Change-Id: Iad1ac3f057ed153429780242e138cec58e8ee764
diff --git a/libion/ion_test.c b/libion/ion_test.c index b7d5583..f3874ae 100644 --- a/libion/ion_test.c +++ b/libion/ion_test.c
@@ -250,7 +250,7 @@ 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);