Skip to content

Commit e42b5f2

Browse files
committed
Cleanup: socket protocol: args to big is not a bug
1 parent 4c9ba96 commit e42b5f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/rtapi/uspace_rtapi_main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ static bool send_args(int fd, const std::vector<std::string> &args) {
466466

467467
//This is the largest value set by set_int16()
468468
if (buff_size > std::numeric_limits<uint16_t>::max()) {
469-
rtapi_print_msg(RTAPI_MSG_ERR, "rtapi_app: Bug send_args: args to big, size = %li!\n", buff_size);
469+
rtapi_print_msg(RTAPI_MSG_ERR, "rtapi_app: send_args: args to big, size = %li!\n", buff_size);
470470
return false;
471471
}
472472

0 commit comments

Comments
 (0)