Skip to content

Commit 7eaa12a

Browse files
committed
[fix] getValueIdDescriptor OZWValueIdIndex type
1 parent 09a1d05 commit 7eaa12a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ::std::string getValueIdDescriptor(OpenZWave::ValueID value)
8282
snprintf(buffer, 32, "%d-%d-%d-%d", value.GetNodeId(), value.GetCommandClassId(), value.GetInstance(), value.GetIndex());
8383
return ::std::string(buffer);
8484
}
85-
::std::string getValueIdDescriptor(uint8 node_id, uint8 class_id, OZWValueIdIndex instance, uint8 index)
85+
::std::string getValueIdDescriptor(uint8 node_id, uint8 class_id, uint8 instance, OZWValueIdIndex index)
8686
{
8787
char buffer[32];
8888
snprintf(buffer, 32, "%d-%d-%d-%d", node_id, class_id, instance, index);

0 commit comments

Comments
 (0)