Fixed formatting

This commit is contained in:
Alexey Romanov
2012-09-14 16:15:46 +04:00
parent 99ea8fdb7b
commit 5fd17e2abf
2 changed files with 2 additions and 2 deletions

View File

@@ -357,7 +357,7 @@ static inline int decode_and_bind_param(
// include space for null separator
char_buf_val = driver_alloc((*p_size + 1) * sizeof(char));
ei_decode_string(buffer, p_index, char_buf_val);
result = sqlite3_bind_text(statement, param_index, char_buf_val, *p_size, &driver_free_fun);
result = sqlite3_bind_text(statement, param_index, char_buf_val, *p_size, &driver_free_fun);
break;
case ERL_BINARY_EXT:
char_buf_val = driver_alloc(*p_size * sizeof(char));

View File

@@ -51,7 +51,7 @@ all_test_() ->
?FuncTest(unicode),
?FuncTest(acc_string_encoding),
?FuncTest(large_offset),
?FuncTest(issue13)]}.
?FuncTest(issue13)]}.
open_db() ->
sqlite3:open(ct, [in_memory]).