Re: svn commit: r253402 - head/tools/regression/aio/aiop

2013-07-17 Thread Kevin Lo
Bruce Evans wrote: On Wed, 17 Jul 2013, Kevin Lo wrote: Log: Use PRId64 instead of %gd to print an int64_t. This is a different printf format error, and a style bug. Printf format errors: commit log: %gd doesn't exist. You mean %qd old: file_size has type off_t, but was printed using %qd.

Re: svn commit: r253402 - head/tools/regression/aio/aiop

2013-07-17 Thread Bruce Evans
On Wed, 17 Jul 2013, Kevin Lo wrote: Log: Use PRId64 instead of %gd to print an int64_t. This is a different printf format error, and a style bug. Printf format errors: commit log: %gd doesn't exist. You mean %qd old: file_size has type off_t, but was printed using %qd. off_t is only

svn commit: r253402 - head/tools/regression/aio/aiop

2013-07-16 Thread Kevin Lo
Author: kevlo Date: Wed Jul 17 00:54:21 2013 New Revision: 253402 URL: http://svnweb.freebsd.org/changeset/base/253402 Log: Use PRId64 instead of %gd to print an int64_t. Modified: head/tools/regression/aio/aiop/aiop.c Modified: head/tools/regression/aio/aiop/aiop.c =