summaryrefslogtreecommitdiffstats
path: root/core/java/android/database
diff options
context:
space:
mode:
authorVasu Nori <vnori@google.com>2010-09-21 12:25:39 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-21 12:25:39 -0700
commitb745ec954272a3c09cca354ad84e2e08b54c8544 (patch)
tree23b1d6ccf56f40e7a302f127588ac67197d031c8 /core/java/android/database
parent100cc263b465242c01dc9eb280d77ffaadbddd39 (diff)
parent173ea0912af296c6e80d14b764046534b316d21f (diff)
downloadframeworks_base-b745ec954272a3c09cca354ad84e2e08b54c8544.zip
frameworks_base-b745ec954272a3c09cca354ad84e2e08b54c8544.tar.gz
frameworks_base-b745ec954272a3c09cca354ad84e2e08b54c8544.tar.bz2
am 173ea091: Merge "DO NOT MERGE - use appropriate names on SQL numbers in \'adb bugreport\'" into gingerbread
Merge commit '173ea0912af296c6e80d14b764046534b316d21f' into gingerbread-plus-aosp * commit '173ea0912af296c6e80d14b764046534b316d21f': DO NOT MERGE - use appropriate names on SQL numbers in 'adb bugreport'
Diffstat (limited to 'core/java/android/database')
-rw-r--r--core/java/android/database/sqlite/SQLiteDebug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDebug.java b/core/java/android/database/sqlite/SQLiteDebug.java
index 89c3f96..b2a166b 100644
--- a/core/java/android/database/sqlite/SQLiteDebug.java
+++ b/core/java/android/database/sqlite/SQLiteDebug.java
@@ -134,7 +134,7 @@ public final class SQLiteDebug {
public DbStats(String dbName, long pageCount, long pageSize, int lookaside) {
this.dbName = dbName;
- this.pageSize = pageSize;
+ this.pageSize = pageSize / 1024;
dbSize = (pageCount * pageSize) / 1024;
this.lookaside = lookaside;
}