From 1004b08cecabd9d4b15ba6d32e07f9e6d577a3a6 Mon Sep 17 00:00:00 2001 From: Prasanna Paithankar Date: Sat, 25 Jan 2025 17:45:12 +0530 Subject: [PATCH] rectified long formatting error --- sys-utils/lsipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/lsipc.c b/sys-utils/lsipc.c index c095f315c..10bc43351 100644 --- a/sys-utils/lsipc.c +++ b/sys-utils/lsipc.c @@ -1067,7 +1067,7 @@ static void do_posix_msg(const char *name, struct lsipc_control *ctl, struct lib rc = scols_line_refer_data(ln, n, arg); break; case COL_MSGS: - rc = scols_line_sprintf(ln, n, "%ju", p->q_qnum); + rc = scols_line_sprintf(ln, n, "%ld", p->q_qnum); break; } if (rc != 0) -- 2.47.3