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
This commit is contained in:
Axel Dörfler
2007-07-27 09:40:26 +00:00
parent 288102e6c3
commit 7548b9ae20
+2 -2
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2005, Ingo Weinhold, [email protected].
* Copyright 2005-2007, Ingo Weinhold, [email protected].
* 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;