]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
stop suggesting -waste because its really the bad choice to make
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 28 Feb 2011 17:27:56 +0000 (11:27 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 28 Feb 2011 17:27:56 +0000 (11:27 -0600)
src/switch.c

index b3112cbc1b99c5fec6b47ce4a73873c87463b0d3..33e7fb633678ecd820045421e71ed87a32b6fba2 100644 (file)
@@ -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;