Skip to content

Commit af6ba76

Browse files
committed
Remove 2 spaces.
1 parent f7d9002 commit af6ba76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/gandiva/gdv_function_stubs.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ const char* gdv_fn_aes_encrypt(int64_t context, const char* data, int32_t data_l
323323
} else {
324324
std::ostringstream oss;
325325
oss << "invalid key length: " << key_data_len;
326-
gdv_fn_context_set_error_msg( context, oss.str().c_str());
326+
gdv_fn_context_set_error_msg(context, oss.str().c_str());
327327
*out_len = 0;
328328
return nullptr;
329329
}
@@ -367,7 +367,7 @@ const char* gdv_fn_aes_decrypt(int64_t context, const char* data, int32_t data_l
367367
} else {
368368
std::ostringstream oss;
369369
oss << "invalid key length: " << key_data_len;
370-
gdv_fn_context_set_error_msg( context, oss.str().c_str());
370+
gdv_fn_context_set_error_msg(context, oss.str().c_str());
371371
*out_len = 0;
372372
return nullptr;
373373
}

0 commit comments

Comments
 (0)