Skip to content

Commit 089a7d4

Browse files
committed
Fix Book.getIllustrations
1 parent 73039e4 commit 089a7d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/main/cpp/libkiwix/book.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ METHOD0(jobjectArray, getIllustrations) {
9393
jobjectArray retArray = createArray(env, illustrations.size(), "org/kiwix/libkiwix/Illustration");
9494
size_t index = 0;
9595
for (auto illu: illustrations) {
96-
auto wrapper = BUILD_WRAPPER("org/kiwix/libkiwx/Illustration", illu);
96+
auto wrapper = BUILD_WRAPPER("org/kiwix/libkiwix/Illustration", illu);
9797
env->SetObjectArrayElement(retArray, index++, wrapper);
9898
}
9999
return retArray;

0 commit comments

Comments
 (0)