diff options
| author | Brian Carlstrom <bdc@google.com> | 2011-05-26 23:49:07 -0700 |
|---|---|---|
| committer | Brian Carlstrom <bdc@google.com> | 2011-05-26 23:49:07 -0700 |
| commit | 0216b58d1027f3bc99f782cc19f809093577868c (patch) | |
| tree | d2079c1e64552546b28f8e371251be2db50f1eb8 /libdex/OptInvocation.cpp | |
| parent | 90f276bc5b8e4eeda1c4a35b2a116cbf6593d95d (diff) | |
| parent | 6f3c21fb026d9489e5046416bcd5a84fa8e4615b (diff) | |
Merge remote branch 'goog/dalvik-dev' into dalvik-dev-to-master
Diffstat (limited to 'libdex/OptInvocation.cpp')
| -rw-r--r-- | libdex/OptInvocation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdex/OptInvocation.cpp b/libdex/OptInvocation.cpp index df5f8d99f..911e9d5a0 100644 --- a/libdex/OptInvocation.cpp +++ b/libdex/OptInvocation.cpp @@ -62,7 +62,7 @@ char* dexOptGenerateCacheFileName(const char* fileName, const char* subFileName) * the leading "./" out, but it'll do. */ if (getcwd(absoluteFile, kBufLen) == NULL) { - LOGE("Can't get CWD while opening jar file\n"); + LOGE("Can't get CWD while opening jar file"); return NULL; } strncat(absoluteFile, "/", kBufLen); @@ -101,7 +101,7 @@ char* dexOptGenerateCacheFileName(const char* fileName, const char* subFileName) */ strncat(nameBuf, absoluteFile, kBufLen); - LOGV("Cache file for '%s' '%s' is '%s'\n", fileName, subFileName, nameBuf); + LOGV("Cache file for '%s' '%s' is '%s'", fileName, subFileName, nameBuf); return strdup(nameBuf); } |
