Commit 832b22d9 authored by Geoff Simmons's avatar Geoff Simmons

cosmetic -- uniform indentation in the call table

parent 506968a1
......@@ -48,14 +48,14 @@ struct vmod_blobcode_blob {
#define B64_FUNCS \
.decode_l = base64_decode_l, \
.decode = base64_decode, \
.encode = base64_encode
.decode = base64_decode, \
.encode = base64_encode
#define HEX_FUNCS \
.decode_l = hex_decode_l, \
.decode = hex_decode, \
.decode = hex_decode, \
.encode_l = hex_encode_l, \
.encode = hex_encode
.encode = hex_encode
static const struct vmod_blobcode_fptr {
len_f *const decode_l;
......@@ -66,15 +66,15 @@ static const struct vmod_blobcode_fptr {
[_INVALID] = {
/* make implicit null init explicit for clarity */
.decode_l = NULL,
.decode = NULL,
.decode = NULL,
.encode_l = NULL,
.encode = NULL
.encode = NULL
},
[IDENTITY] = {
.decode_l = id_decode_l,
.decode = id_decode,
.decode = id_decode,
.encode_l = id_encode_l,
.encode = id_encode
.encode = id_encode
},
[BASE64] = {
B64_FUNCS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment