From fe152626db1bd4f23b3ba49fdac2325b5987e13d Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 28 Feb 2011 11:27:56 -0600 Subject: [PATCH] stop suggesting -waste because its really the bad choice to make --- src/switch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch.c b/src/switch.c index b3112cbc1b..33e7fb6336 100644 --- a/src/switch.c +++ b/src/switch.c @@ -780,7 +780,7 @@ int main(int argc, char *argv[]) int i = 0; fprintf(stderr, "Error: stacksize %d is too large: run ulimit -s %d from your shell before starting the application.\nauto-adjusting stack size for optimal performance...\n", - (int) (rlp.rlim_max / 1024), SWITCH_THREAD_STACKSIZE / 1024, local_argv[0]); + (int) (rlp.rlim_max / 1024), SWITCH_THREAD_STACKSIZE / 1024); memset(&rlp, 0, sizeof(rlp)); rlp.rlim_cur = SWITCH_THREAD_STACKSIZE;