Skip to content

Commit

Permalink
RDKBDEV-2975: fix error message typo (#227)
Browse files Browse the repository at this point in the history
Reason for change:
fix error message typo: rbuscore_message.c:204
rbusMessage_GetBytes unexpected date type 5 Update date -> data Test
Procecedure: Sanity.
Risks: None.
Signed-off-by: mkamat <[email protected]>
  • Loading branch information
pradeeptakdas authored Nov 14, 2024
1 parent 65d8c3d commit 3e23650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/rbuscore_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
VERIFY_UNPACK_NEXT_ITEM()\
if(message->upk.data.type != T)\
{\
RBUSCORELOG_ERROR("%s unexpected date type %d", __FUNCTION__, message->upk.data.type);\
RBUSCORELOG_ERROR("%s unexpected data type %d", __FUNCTION__, message->upk.data.type);\
return RT_FAIL;\
}

#define VERIFY_UNPACK2(T,T2)\
VERIFY_UNPACK_NEXT_ITEM()\
if(message->upk.data.type != T && message->upk.data.type != T2)\
{\
RBUSCORELOG_ERROR("%s unexpected date type %d", __FUNCTION__, message->upk.data.type);\
RBUSCORELOG_ERROR("%s unexpected data type %d", __FUNCTION__, message->upk.data.type);\
return RT_FAIL;\
}

Expand Down

0 comments on commit 3e23650

Please sign in to comment.