From c20a106569463940e04714295e03f3eb6bf60c9b Mon Sep 17 00:00:00 2001 From: Bart Oldeman Date: Mon, 21 May 2007 01:14:20 +0000 Subject: [PATCH] Fix warning with OW 1.7 in-development. git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@1318 6ac86273-5f31-0410-b378-82cca8765d1b --- kernel/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/config.c b/kernel/config.c index 421a35a..1a86e54 100644 --- a/kernel/config.c +++ b/kernel/config.c @@ -1175,7 +1175,7 @@ STATIC VOID Country(BYTE * pLine) { /* Format: COUNTRY = countryCode, [codePage], filename */ COUNT ctryCode; - COUNT codePage = NLS_DEFAULT; + COUNT codePage = (COUNT)NLS_DEFAULT; char *filename = ""; if ((pLine = GetNumArg(pLine, &ctryCode)) == 0)