From 773757133c72bb1c587ea4c96753931646994a17 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Mon, 30 Mar 2020 09:30:37 +0000
Subject: [PATCH] Resolve warning: field width specifier '*' expects argument
 of type 'int'

---
 src/uifc/uifcx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/uifc/uifcx.c b/src/uifc/uifcx.c
index 9bfb1b39ea..e6c7e13930 100644
--- a/src/uifc/uifcx.c
+++ b/src/uifc/uifcx.c
@@ -361,7 +361,7 @@ void umsg(char *str)
 /****************************************************************************/
 void upop(char *str)
 {
-	static size_t len;
+	static int len;
 
     if(str==NULL)
         printf("\r%*s\r", len, "");
-- 
GitLab