[PATCH] xfstests: fix format string warnings in aio-dio-extend-stat.c

Alex Elder aelder at sgi.com
Thu Jan 21 08:01:13 CST 2010


Christoph Hellwig wrote:
> Signed-off-by: Christoph Hellwig <hch at lst.de>

Looks good.

Reviewed-by: Alex Elder <aelder at sgi.com>

> Index: xfstests-dev/src/aio-dio-regress/aio-dio-extend-stat.c
> ===================================================================
> --- xfstests-dev.orig/src/aio-dio-regress/aio-dio-extend-stat.c	2010-01-21 11:27:36.000000000
> +0000 +++ xfstests-dev/src/aio-dio-regress/aio-dio-extend-stat.c	2010-01-21 11:28:15.000000000
> +0000 @@ -149,8 +149,9 @@ void fun_read(void *ptr)
>  			if (filestat.st_size < exSize)
>  				fail("write of %lu bytes @%llu finished, "
>  				     "expected filesize at least %llu, but "
> -				     "got %ld\n", event->obj->u.c.nbytes,
> -				     event->obj->u.c.offset, exSize, filestat.st_size);
> +				     "got %lld\n", event->obj->u.c.nbytes,
> +				     event->obj->u.c.offset, exSize,
> +				     (long long)filestat.st_size);
>  		}
>  	}
>  }
> 
> _______________________________________________
> xfs mailing list
> xfs at oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs




More information about the xfs mailing list