Skip to content

Commit 425295c

Browse files
committed
loader: Fix filename and native lib dir sequence for log
Signed-off-by: utzcoz <utzcoz@outlook.com>
1 parent 52bb26e commit 425295c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/loader/android_utilities.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ int getActiveRuntimeVirtualManifest(wrap::android::content::Context const &conte
299299

300300
auto hasFunctions = cursor.getInt(cursor.getColumnIndex(active_runtime::Columns::HAS_FUNCTIONS)) == 1;
301301
__android_log_print(ANDROID_LOG_INFO, TAG, "Got runtime: package: %s, so filename: %s, native lib dir: %s, has functions: %s",
302-
packageName.c_str(), libDir.c_str(), filename.c_str(), (hasFunctions ? "yes" : "no"));
302+
packageName.c_str(), filename.c_str(), libDir.c_str(), (hasFunctions ? "yes" : "no"));
303303

304304
auto lib_path = libDir + "/" + filename;
305305
cursor.close();

0 commit comments

Comments
 (0)