Diff between 5351d4d86a08fbdc7f537b4662c5a070dbf1d0b4 and 433a9fd13d46298706a752d86756a02a8d91bdf2

Changed Files

File Additions Deletions Status
monitor/l2cap.h +2 -2 modified

Full Patch

diff --git a/monitor/l2cap.h b/monitor/l2cap.h
index 00a8ffb..e633778 100644
--- a/monitor/l2cap.h
+++ b/monitor/l2cap.h
@@ -291,7 +291,7 @@ static inline bool l2cap_frame_print_be64(struct l2cap_frame *frame,
 		return false;
 	}
 
-	print_field("%s: 0x%zx", label, u64);
+	print_field("%s: 0x%" PRIx64, label, u64);
 
 	return true;
 }
@@ -320,7 +320,7 @@ static inline bool l2cap_frame_print_le64(struct l2cap_frame *frame,
 		return false;
 	}
 
-	print_field("%s: 0x%zx", label, u64);
+	print_field("%s: 0x%" PRIx64, label, u64);
 
 	return true;
 }