Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Dec 27, 2023
1 parent 03d48a0 commit 0e735d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/c/jpy_jobj.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ int JType_InitSlots(JPy_JType* type)
typeObj->tp_basicsize = sizeof(JPy_JArray);
} else if (type == JPy_JByteBuffer) {
typeObj->tp_basicsize = sizeof(JPy_JByteBufferWrapper);
JPy_DIAG_PRINT(JPy_DIAG_F_MEM, "JType_InitSlots: allocating space for JPy_JByteBufferWrapper\n");
JPy_DIAG_PRINT(JPy_DIAG_F_TYPE, "JType_InitSlots: allocating space for JPy_JByteBufferWrapper\n");
} else {
typeObj->tp_basicsize = sizeof(JPy_JObj);
}
Expand Down

0 comments on commit 0e735d2

Please sign in to comment.