diff options
| author | 2018-08-28 19:09:12 -0600 | |
|---|---|---|
| committer | 2018-08-29 16:21:50 +0000 | |
| commit | 9ab9711e7fc4d727c4904fb42d44e4badc7f47f9 (patch) | |
| tree | 59e754ee6458e4aab5f1a0279c025afdd8424d54 | |
| parent | 27fcf48f147007f78cf70e57b7a4d495519c674e (diff) | |
Fix constant used by test.
Bug: 111854851
Change-Id: I6ea9bb5b73d7e9133f78cdc1431f180664b5eae7
| -rw-r--r-- | cmds/installd/tests/installd_service_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/tests/installd_service_test.cpp b/cmds/installd/tests/installd_service_test.cpp index a5af5d740e..5e6e9330bf 100644 --- a/cmds/installd/tests/installd_service_test.cpp +++ b/cmds/installd/tests/installd_service_test.cpp @@ -37,7 +37,7 @@ namespace installd { constexpr const char* kTestUuid = "TEST"; -static constexpr int FLAG_FORCE = 1 << 16; +static constexpr int FLAG_FORCE = 0x2000; int get_property(const char *key, char *value, const char *default_value) { return property_get(key, value, default_value); |