[qca-nss-sfe] Change msduq print format from decimal to hex in sfe_dump.

Change-Id: Ic388a35d5d9b6d1aac3642259fcfdd3caf8f8429
Signed-off-by: Parikshit Gune <quic_pgune@quicinc.com>
diff --git a/sfe_ipv6.c b/sfe_ipv6.c
index 0549bf4..dc9d53a 100644
--- a/sfe_ipv6.c
+++ b/sfe_ipv6.c
@@ -2127,12 +2127,12 @@
 	}
 
 	if (original_cm_sawf_valid) {
-		bytes_read += snprintf(msg + bytes_read, CHAR_DEV_MSG_SIZE, "flow_service_class=\"%d\" flow_msduq=\"%d\" ",
+		bytes_read += snprintf(msg + bytes_read, CHAR_DEV_MSG_SIZE, "flow_service_class=\"%d\" flow_msduq= \"0x%x\" ",
 			flow_service_class, flow_msduq);
 	}
 
 	if (reply_cm_sawf_valid) {
-		bytes_read += snprintf(msg + bytes_read, CHAR_DEV_MSG_SIZE, "return_service_class=\"%d\" return_msduq=\"%d\" ",
+		bytes_read += snprintf(msg + bytes_read, CHAR_DEV_MSG_SIZE, "return_service_class=\"%d\" return_msduq= \"0x%x\" ",
 			return_service_class, return_msduq);
 	}