2005-03-01  Roland McGrath  <roland@redhat.com>

	* file.c (print_xattr_val): Add a cast.
diff --git a/file.c b/file.c
index 0879f86..c8f7b87 100644
--- a/file.c
+++ b/file.c
@@ -2358,7 +2358,7 @@
     if (!failed) {
 	unsigned char *buf = malloc(4 * size + 1);
 	if (buf == NULL || /* probably a bogus size argument */
-	    umoven(tcp, arg, size, &buf[3 * size]) < 0) {
+	    umoven(tcp, arg, size, (char *) &buf[3 * size]) < 0) {
 	    failed = 1;
 	}
 	else {