Closed OhadMeir closed 2 weeks ago
Tracked on [RSDEV-2861]
Stream type string was changed on a previous PR but not updated here. Also using strcmp to compare char* strings, not == as the operator compares pointers and might not work as expected.
strcmp
char*
==
Tracked on [RSDEV-2861]
Stream type string was changed on a previous PR but not updated here. Also using
strcmp
to comparechar*
strings, not==
as the operator compares pointers and might not work as expected.