Skip to content

Commit f7d9002

Browse files
committed
Fix formatting
1 parent 4bd5391 commit f7d9002

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

cpp/src/gandiva/gdv_function_stubs.cc

+2-6
Original file line numberDiff line numberDiff line change
@@ -323,9 +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(
327-
context,
328-
oss.str().c_str());
326+
gdv_fn_context_set_error_msg( context, oss.str().c_str());
329327
*out_len = 0;
330328
return nullptr;
331329
}
@@ -369,9 +367,7 @@ const char* gdv_fn_aes_decrypt(int64_t context, const char* data, int32_t data_l
369367
} else {
370368
std::ostringstream oss;
371369
oss << "invalid key length: " << key_data_len;
372-
gdv_fn_context_set_error_msg(
373-
context,
374-
oss.str().c_str());
370+
gdv_fn_context_set_error_msg( context, oss.str().c_str());
375371
*out_len = 0;
376372
return nullptr;
377373
}

0 commit comments

Comments
 (0)