[PATCH] uml: fix 2 harmless cast warnings for 64-bit

Fix two harmless warnings in 64-bit compilation (the 2nd doesn't trigger for
now because of a missing __attribute((format)) for cow_printf, but next
patches fix that).

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Paolo 'Blaisorblade' Giarrusso
2006-04-10 22:53:31 -07:00
committed by Linus Torvalds
parent f2ea394082
commit 6dad2d3faa
2 changed files with 3 additions and 2 deletions

View File

@@ -615,7 +615,7 @@ static void console_write(struct console *console, const char *string,
return;
while(1){
n = min((size_t)len, ARRAY_SIZE(console_buf) - console_index);
n = min((size_t) len, ARRAY_SIZE(console_buf) - console_index);
strncpy(&console_buf[console_index], string, n);
console_index += n;
string += n;