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

Commit dc594a5f authored by Steve Kondik's avatar Steve Kondik
Browse files

Fix C fail.

parent f246c42b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -389,7 +389,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, "");
        if (!strcmp(dexopt_data_only, "1")) {
        if (strcmp(dexopt_data_only, "1") != 0) {
            cache_path = DALVIK_SYSTEM_CACHE_PREFIX;
        }
    }