Syscalls have at most 6 argument, not 5. See mmap(2) for example.

Previously the offset argument to mmap(2) would be bogus as we
weren't reading it in.

Approved by: re (kensmith)
This commit is contained in:
Marcel Moolenaar 2007-07-28 23:00:42 +00:00
parent e3020cfd3c
commit 3e1b607837
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171645

View File

@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$");
#include "truss.h"
#include "extern.h"
#define MAXARGS 5
#define MAXARGS 6
static void
usage(void)