Skip to content

Commit

Permalink
Fix domain id argument in create_participant API
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 committed Mar 3, 2023
1 parent 85d83a9 commit c80cd26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/uxr/client/core/session/create_entities_ref.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ UXRDLLAPI uint16_t uxr_buffer_create_participant_ref(
uxrSession* session,
uxrStreamId stream_id,
uxrObjectId object_id,
int16_t domain_id,
uint16_t domain_id,
const char* ref,
uint8_t mode);

Expand Down
2 changes: 1 addition & 1 deletion src/c/core/session/create_entities_ref.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ uint16_t uxr_buffer_create_participant_ref(
uxrSession* session,
uxrStreamId stream_id,
uxrObjectId object_id,
int16_t domain_id,
uint16_t domain_id,
const char* ref,
uint8_t mode)
{
Expand Down

0 comments on commit c80cd26

Please sign in to comment.