Skip to content

Commit

Permalink
Fix type of variable in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Aug 2, 2023
1 parent 21d6e00 commit 175d94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/support/tests/TestJsonToTlv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void Test32BitConvert(nlTestSuite * inSuite, void * inContext)
// - large ids are encoded as implicit tags (NOT used in spec as spec never has such high ids)
TLV::TLVReader reader;
TLV::TLVType tlvType;
int value = 0;
int32_t value = 0;

// convert a simple single value
{
Expand Down

0 comments on commit 175d94b

Please sign in to comment.