Skip to content

Commit

Permalink
Cast to correct signedness
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Jul 1, 2024
1 parent fd0e1b9 commit 5df0cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/umb_echo_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ handle_multi_part_msg(
#if UMB_WINDOWS
const auto log_msg_icu = icu::UnicodeString(
log_msg.c_str(),
static_cast<uint32_t>(log_msg.size()));
static_cast<int32_t>(log_msg.size()));
std::string log_msg_str;
log_msg_icu.toUTF8String(log_msg_str);
#else
Expand Down

0 comments on commit 5df0cfb

Please sign in to comment.