From bbbb9239c929b66abb62e73869730fb5f4b97d60 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Thu, 2 Jan 2025 17:57:20 +0900 Subject: [PATCH] main: specify the type of a local variable explicitly Signed-off-by: Masatake YAMATO --- main/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/fmt.c b/main/fmt.c index 8d4952b35f..b8d3357ed8 100644 --- a/main/fmt.c +++ b/main/fmt.c @@ -55,7 +55,7 @@ static int printTagField (fmtSpec* fspec, MIO* fp, const tagEntryInfo * tag) { int i; int width = fspec->field.width; - int ftype; + fieldType ftype; const char* str = NULL; ftype = fspec->field.ftype;