svn commit: r327921 - head/usr.bin/truss

Michael Tuexen tuexen at FreeBSD.org
Sat Jan 13 14:10:47 UTC 2018


Author: tuexen
Date: Sat Jan 13 14:10:45 2018
New Revision: 327921
URL: https://svnweb.freebsd.org/changeset/base/327921

Log:
  Fix a typo introduced in r327919.

Modified:
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c	Sat Jan 13 14:10:05 2018	(r327920)
+++ head/usr.bin/truss/syscalls.c	Sat Jan 13 14:10:45 2018	(r327921)
@@ -2143,7 +2143,7 @@ print_arg(struct syscall_args *sc, unsigned long *args
 			fprintf(fp, "0x%lx", args[sc->offset]);
 		break;
 	}
-#define IOV_LIMIT 26
+#define IOV_LIMIT 16
 	case Iovec: {
 		/*
 		 * Print argument as an array of struct iovec, where the next


More information about the svn-src-head mailing list