diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-03-23 08:22:13 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-03-23 08:22:13 +0000 |
commit | c955d457ef8de1d3985e25ed32ca432b4f25b1b2 (patch) | |
tree | 8b6ceb715afc5ec5303510085978e7457813c4fb /benchmarks/unixbench/files | |
parent | Add a column for 'build logs'. This is larger than the number of the (diff) |
- Fix build crash on amd64
PR: 109596
Submitted by: Ivan Voras <ivoras@gmail.com>
Approved by: maintainer timeout
Diffstat (limited to 'benchmarks/unixbench/files')
-rw-r--r-- | benchmarks/unixbench/files/patch-execl.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/benchmarks/unixbench/files/patch-execl.c b/benchmarks/unixbench/files/patch-execl.c new file mode 100644 index 000000000000..affb32ff6d6e --- /dev/null +++ b/benchmarks/unixbench/files/patch-execl.c @@ -0,0 +1,11 @@ +--- src/execl.c.orig Wed Jul 28 23:46:58 1999 ++++ src/execl.c Fri Mar 23 09:20:36 2007 +@@ -88,7 +88,7 @@ + fprintf(stderr, "%lu loops\n", iter); + exit(0); + } +- execl(fullpath, fullpath, "0", dur_str, count_str, start_str, 0); ++ execl(fullpath, fullpath, "0", dur_str, count_str, start_str, NULL); + printf("Exec failed at iteration %lu\n", iter); + perror("Reason"); + exit(1); |