monitor: Fix usage of %z formater for uint64_t
authorBrian Gix <brian.gix@intel.com>
Wed, 29 Jun 2022 19:19:43 +0000 (12:19 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Mon, 15 May 2023 09:25:54 +0000 (14:55 +0530)
%z expect a size_t as argument not uint64_t, so passing
an argument of type uint64_t shall use PRIx64 instead.

Signed-off-by: Manika Shrivastava <manika.sh@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
monitor/l2cap.h

index 9781241..e633778 100755 (executable)
@@ -291,7 +291,7 @@ static inline bool l2cap_frame_print_be64(struct l2cap_frame *frame,
                return false;
        }
 
-       print_field("%s: 0x%llx", 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%llx", label, u64);
+       print_field("%s: 0x%" PRIx64, label, u64);
 
        return true;
 }