Skip to content

Commit

Permalink
Fix jshort typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Jun 18, 2024
1 parent 78ccd63 commit 38113c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/support/JniReferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ jdouble JniReferences::DoubleToPrimitive(jobject boxedDouble)
return env->CallDoubleMethod(boxedDouble, valueMethod);
}

jShort JniReferences::ShortToPrimitive(jobject boxedShort)
jshort JniReferences::ShortToPrimitive(jobject boxedShort)
{
JNIEnv * env = GetEnvForCurrentThread();
VerifyOrReturnValue(env != nullptr, 0, ChipLogError(Support, "env cannot be nullptr"));
Expand Down

0 comments on commit 38113c6

Please sign in to comment.