Diff between 36927f39b50fa4d70ab71a2446cfd03f1449134c and ac381ea1a44ac040317f1b7c26cf3c4360089feb

Changed Files

File Additions Deletions Status
tools/parser/sdp.c +1 -1 modified

Full Patch

diff --git a/tools/parser/sdp.c b/tools/parser/sdp.c
index c1cb0fe..dcb9e74 100644
--- a/tools/parser/sdp.c
+++ b/tools/parser/sdp.c
@@ -214,7 +214,7 @@ static inline void print_int(uint8_t de_type, int level, int n, struct frame *fr
 	case 16:/* 128-bit */
 		get_u128(frm, &val, &val2);
 		printf(" 0x%llx", val2);
-		if (val < 0x1000000000000000L)
+		if (val < 0x1000000000000000LL)
 			printf("0");
 		printf("%llx", val);
 		return;