screen-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[screen-devel] [PATCH 5/8] Process: Fix printf modifier warning


From: Kieran Bingham
Subject: [screen-devel] [PATCH 5/8] Process: Fix printf modifier warning
Date: Sun, 4 Oct 2015 16:52:30 +0100

Another cast, for the %*s which expects a signed value to our unsigned
length parameter.

In this instance, it feels like the printf modifier type is wrong,
(surely you can't have a negative field length here?) but I'm not
one to argue with the C-Library

Signed-off-by: Kieran Bingham <address@hidden>
---
 src/process.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process.c b/src/process.c
index 40c81f8..1337e91 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4863,7 +4863,7 @@ static void ColonFin(char *buf, size_t len, void *data)
                        }
                }
                if (l > r && showmessage)
-                       Msg(0, "No commands matching '%*s'", len, buf);
+                       Msg(0, "No commands matching '%*s'", (int)len, buf);
                return;
        }
 
-- 
2.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]