Skip to content

Commit

Permalink
fix wrong return type
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Mar 22, 2024
1 parent 439da98 commit b4533a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jni-c-toxcore/jni-c-toxcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -4441,7 +4441,7 @@ Java_com_zoffcc_applications_trifa_MainActivity_tox_1self_1get_1name_1size(JNIEn
{
if(tox_global == NULL)
{
return NULL;
return (jlong)0;
}

long long l = (long long)tox_self_get_name_size(tox_global);
Expand Down

0 comments on commit b4533a4

Please sign in to comment.