Skip to content

Commit 8475b65

Browse files
authored
SampleCppMini - adjust ticketNames array size (#1257)
Fixes build break in SampleCppMini by adjusting ticketNames array size to match number of elements the array is initialized with.
1 parent 5068a98 commit 8475b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/cpp/SampleCppMini/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void test_cpp_api(const char * token, int ticketType, const char *ticket)
3131

3232
if (ticket != nullptr)
3333
{
34-
const char *ticketNames[7] =
34+
const char *ticketNames[8] =
3535
{
3636
"TicketType_MSA_Device",
3737
"TicketType_MSA_User",

0 commit comments

Comments
 (0)