svn commit: r332241 - stable/11/usr.bin/truss

Michael Tuexen tuexen at FreeBSD.org
Sat Apr 7 20:54:38 UTC 2018


Author: tuexen
Date: Sat Apr  7 20:54:37 2018
New Revision: 332241
URL: https://svnweb.freebsd.org/changeset/base/332241

Log:
  MFC r327921:
  
  Fix a typo introduced in r327919.

Modified:
  stable/11/usr.bin/truss/syscalls.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.bin/truss/syscalls.c
==============================================================================
--- stable/11/usr.bin/truss/syscalls.c	Sat Apr  7 20:53:34 2018	(r332240)
+++ stable/11/usr.bin/truss/syscalls.c	Sat Apr  7 20:54:37 2018	(r332241)
@@ -2068,7 +2068,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-all mailing list