diff options
author | Kim Alvefur <zash@zash.se> | 2012-08-31 17:22:03 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-08-31 17:22:03 +0200 |
commit | 178dcc2e912a74f18dcb5f16398684450bbb9dbc (patch) | |
tree | d1ef6139c5394dabe64096674021f56621274136 /core | |
parent | 8df019952cf1e5d32832af1a8bf007d4408c2864 (diff) | |
download | prosody-178dcc2e912a74f18dcb5f16398684450bbb9dbc.tar.gz prosody-178dcc2e912a74f18dcb5f16398684450bbb9dbc.zip |
storagemanager: Fix indentation
Diffstat (limited to 'core')
-rw-r--r-- | core/storagemanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua index 3379cc0c..3c8ec7ec 100644 --- a/core/storagemanager.lua +++ b/core/storagemanager.lua @@ -78,8 +78,8 @@ function get_driver(host, store) driver = null_storage_driver; end return driver, driver_name; - end - +end + function open(host, store, typ) local driver, driver_name = get_driver(host, store); local ret, err = driver:open(store, typ); |