diff options
author | ctso <ctsoyars@gmail.com> | 2010-06-24 03:35:24 +0000 |
---|---|---|
committer | ctso <ctsoyars@gmail.com> | 2010-06-24 03:35:24 +0000 |
commit | ac6680fbc0db40bff2ff26cb0285dbc360c68c81 (patch) | |
tree | cdede8165c78762fb775a493e78a2c2d3b9cfed3 /cmds | |
parent | 6678bba7f69859fd51901fc87daa003c73a658a1 (diff) | |
download | frameworks_base-ac6680fbc0db40bff2ff26cb0285dbc360c68c81.zip frameworks_base-ac6680fbc0db40bff2ff26cb0285dbc360c68c81.tar.gz frameworks_base-ac6680fbc0db40bff2ff26cb0285dbc360c68c81.tar.bz2 |
Fix typo
Change-Id: I51440cc41ae5c5ac4dede7ec7bf0b417c9562cd5
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/installd/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c index fff922f..f27eef8 100644 --- a/cmds/installd/commands.c +++ b/cmds/installd/commands.c @@ -420,7 +420,7 @@ int create_cache_path(char path[PKG_PATH_MAX], const char *src) const char *cache_path = DALVIK_CACHE_PREFIX; if (!strncmp(src, "/system", 7)) { - property_get("dalvik.vm.dexopt-data-only" dexopt_data_only, ""); + property_get("dalvik.vm.dexopt-data-only", dexopt_data_only, ""); if (!strcmp(dexopt_data_only, "1")) { cache_path = DALVIK_SYSTEM_CACHE_PREFIX; } |