Skip to content

Commit

Permalink
Remove unnecessary printf
Browse files Browse the repository at this point in the history
  • Loading branch information
jvictorhuguenin committed Jul 6, 2021
1 parent 31fc61c commit 5c65196
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cpp/src/gandiva/precompiled/string_ops.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,6 @@ const char* to_hex_big_int(int64_t context, int64_t data, int32_t* out_len) {
*out_len = 0;
return "";
}
printf(PRIX64 "\n");
snprintf(ret, hex_long_max_size + 1, "%" PRIX64, data);

*out_len = static_cast<int32_t>(strlen(ret));
Expand Down

0 comments on commit 5c65196

Please sign in to comment.