diff options
author | 2015-12-17 15:50:02 +0800 | |
---|---|---|
committer | 2015-12-17 15:50:02 +0800 | |
commit | e49fb93e3cd1d42b41ddca916bdb327240ebca31 (patch) | |
tree | d4c7b786337f30f60c4ceca9d76a577b02b7b496 /src | |
parent | 411981c1c308a9ad04d01421e9170d37f2013f4b (diff) | |
download | luaossl-e49fb93e3cd1d42b41ddca916bdb327240ebca31.tar.gz luaossl-e49fb93e3cd1d42b41ddca916bdb327240ebca31.tar.bz2 luaossl-e49fb93e3cd1d42b41ddca916bdb327240ebca31.zip |
column-align field initializers
Diffstat (limited to 'src')
-rw-r--r-- | src/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openssl.c b/src/openssl.c index 4da28ef..2bb5d70 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -1909,7 +1909,7 @@ static int bn__tostring(lua_State *L) { static const luaL_Reg bn_methods[] = { { "tobin", &bn_tobin }, - { NULL, NULL }, + { NULL, NULL }, }; static const luaL_Reg bn_metatable[] = { |