aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaiju Muthukadan <baiju.m.mail@gmail.com>2015-02-28 09:01:57 +0530
committerBaiju Muthukadan <baiju.m.mail@gmail.com>2015-02-28 09:01:57 +0530
commit4ff9f866c5dc0ec5f45844599872f8f60c66b7fa (patch)
treea5ea232b246fedd51a0b3f260acb30b556c85a8c
parentMerge pull request #317 from benbjohnson/32bit-max-alloc (diff)
downloaddedo-4ff9f866c5dc0ec5f45844599872f8f60c66b7fa.tar.gz
dedo-4ff9f866c5dc0ec5f45844599872f8f60c66b7fa.tar.xz
new line after page size info print
-rw-r--r--cmd/bolt/info.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bolt/info.go b/cmd/bolt/info.go
index 5606e68..cb01e38 100644
--- a/cmd/bolt/info.go
+++ b/cmd/bolt/info.go
@@ -22,5 +22,5 @@ func Info(path string) {
// Print basic database info.
var info = db.Info()
- printf("Page Size: %d", info.PageSize)
+ printf("Page Size: %d\n", info.PageSize)
}