summaryrefslogtreecommitdiffstats
path: root/vm/JarFile.cpp
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2011-05-26 12:01:03 -0700
committerDan Bornstein <danfuzz@android.com>2011-05-26 12:01:03 -0700
commit6f3c21fb026d9489e5046416bcd5a84fa8e4615b (patch)
treed2079c1e64552546b28f8e371251be2db50f1eb8 /vm/JarFile.cpp
parent291c84f60853d30e1c0d79dd08c5e5164f588e26 (diff)
downloadandroid_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.tar.gz
android_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.tar.bz2
android_dalvik-6f3c21fb026d9489e5046416bcd5a84fa8e4615b.zip
More LOG newline cleanup.
This changes all the places I could find where the log string was on the line after its LOG call. Change-Id: Iac6a9fcc64f46631fb093824ab60237dce1a5241
Diffstat (limited to 'vm/JarFile.cpp')
-rw-r--r--vm/JarFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/JarFile.cpp b/vm/JarFile.cpp
index 05042771f..0499e9b46 100644
--- a/vm/JarFile.cpp
+++ b/vm/JarFile.cpp
@@ -151,7 +151,7 @@ DexCacheStatus dvmDexCacheStatus(const char *fileName)
fd = openAlternateSuffix(fileName, "odex", O_RDONLY, &cachedName);
if (fd < 0) {
LOGI("Zip is good, but no %s inside, and no .odex "
- "file in the same directory\n", kDexInJarName);
+ "file in the same directory", kDexInJarName);
result = DEX_CACHE_BAD_ARCHIVE;
goto bail;
}
@@ -317,7 +317,7 @@ tryArchive:
}
} else {
LOGI("Zip is good, but no %s inside, and no valid .odex "
- "file in the same directory\n", kDexInJarName);
+ "file in the same directory", kDexInJarName);
goto bail;
}
}