From a87a2c26ec50bb4de1c1142259e667d2a831968f Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 20 Aug 2006 17:22:03 +0000 Subject: (svn r5993) -Fix r5974: a cause-no-warning commit caused a warning ;) (glx) --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'console.c') diff --git a/console.c b/console.c index 5c7eadf93..aec3a4017 100644 --- a/console.c +++ b/console.c @@ -680,7 +680,7 @@ IConsoleAlias *IConsoleAliasGet(const char *name) /** copy in an argument into the aliasstream */ static inline int IConsoleCopyInParams(char *dst, const char *src, uint bufpos) { - int len = min(ICON_MAX_STREAMSIZE - bufpos, (int)strlen(src)); + int len = min(ICON_MAX_STREAMSIZE - bufpos, (uint)strlen(src)); strncpy(dst, src, len); return len; -- cgit v1.2.3-54-g00ecf