Skip to content

Commit cf3c6ad

Browse files
committed
Style fix.
1 parent c9c1dcb commit cf3c6ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tp_transcode.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ typedef struct tp_codec {
3838
*/
3939
enum tp_codec_type {
4040

41-
/**
41+
/**
4242
* JSON PRC to Tarantool message (Yajl engine)
4343
*/
4444
YAJL_JSON_TO_TP = 0,
@@ -115,8 +115,8 @@ tp_dump(char *output, size_t output_size, char *input, size_t input_size);
115115
static inline void
116116
tp_transcode_free(tp_transcode_t *t)
117117
{
118-
assert(t);
119-
t->codec.free(t->codec.ctx);
118+
assert(t);
119+
t->codec.free(t->codec.ctx);
120120
}
121121

122122
static inline int
@@ -129,7 +129,7 @@ tp_transcode_complete(tp_transcode_t *t, size_t *complete_msg_size)
129129
static inline int
130130
tp_transcode(tp_transcode_t *t, char *b, size_t size)
131131
{
132-
assert(t);
132+
assert(t);
133133
return t->codec.transcode(t->codec.ctx, b, size);
134134
}
135135

0 commit comments

Comments
 (0)