We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c35e8c commit 5cc5f86Copy full SHA for 5cc5f86
examples/tv-app/android/java/application-launcher/ApplicationLauncherManager.cpp
@@ -82,8 +82,8 @@ CHIP_ERROR ApplicationLauncherManager::HandleGetCatalogList(AttributeValueEncode
82
return CHIP_ERROR_INCORRECT_STATE;
83
}
84
85
- jint size = env->GetArrayLength(jCatalogList);
86
- jint *elements = env->GetIntArrayElements(jCatalogList, 0);
+ jint size = env->GetArrayLength(jCatalogList);
+ jint * elements = env->GetIntArrayElements(jCatalogList, 0);
87
for (int i = 0; i < size; i++)
88
{
89
jint jCatalogVendorId = elements[i];
0 commit comments