about summary refs log tree commit diff
path: root/frida_mode/src/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'frida_mode/src/lib.c')
-rw-r--r--frida_mode/src/lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/lib.c b/frida_mode/src/lib.c
index 6e27c170..feeb6541 100644
--- a/frida_mode/src/lib.c
+++ b/frida_mode/src/lib.c
@@ -129,7 +129,7 @@ static void lib_get_text_section(lib_details_t *details) {
 
   if (len == (off_t)-1) { FATAL("Failed to lseek %s", details->path); }
 
-  OKF("len: %ld\n", len);
+  OKF("len: %ld", len);
 
   hdr = (Elf_Ehdr *)mmap(NULL, len, PROT_READ, MAP_PRIVATE, fd, 0);
   if (hdr == MAP_FAILED) { FATAL("Failed to map %s", details->path); }