From 7548b9ae20a01b8c031c05c9e7348ae5b2616a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 27 Jul 2007 09:40:26 +0000 Subject: [PATCH] Forgot to include strace in the huge commit that changed the _kern_load_image() signature, sorry! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21718 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/strace/strace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/strace/strace.cpp b/src/bin/strace/strace.cpp index f8c24c1461..722f16661e 100644 --- a/src/bin/strace/strace.cpp +++ b/src/bin/strace/strace.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2005, Ingo Weinhold, bonefish@users.sf.net. + * Copyright 2005-2007, Ingo Weinhold, bonefish@users.sf.net. * Distributed under the terms of the MIT License. */ @@ -194,7 +194,7 @@ load_program(const char *const *args, int32 argCount, bool traceLoading) // load the program error = _kern_load_image(argCount, mutableArgs, envCount, (const char**)environ, B_NORMAL_PRIORITY, - (traceLoading ? 0 : B_WAIT_TILL_LOADED)); + (traceLoading ? 0 : B_WAIT_TILL_LOADED), -1, 0); delete[] mutableArgs;