Increased the maximum number of command line arguments to a more

comfortable number. Somewhat more complex "traced" filter expressions
tended to exceed the old limit easily. 


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23683 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-01-21 13:09:39 +00:00
parent 635aca08c5
commit 0bf73dd2f1

View File

@ -42,7 +42,7 @@
static const int kMaxTokenLength = 128;
static const int kJumpBufferCount = 10;
static const int kMaxArgumentCount = 16;
static const int kMaxArgumentCount = 64;
static const size_t kTemporaryStorageSize = 10240;
static jmp_buf sJumpBuffers[kJumpBufferCount];