Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2003-08-29 14:25:01 +0000
committerAlain Magloire2003-08-29 14:25:01 +0000
commita62a1f4305224446e2630ac86fcf99f025a38d3e (patch)
treebae1f9a84db6db83df1588fa0a4dca7554cb311b /core/org.eclipse.cdt.core.win32/library/starter/starter.cpp
parentf0646c36bc6a76a51aebea200501648002a9047a (diff)
downloadorg.eclipse.cdt-a62a1f4305224446e2630ac86fcf99f025a38d3e.tar.gz
org.eclipse.cdt-a62a1f4305224446e2630ac86fcf99f025a38d3e.tar.xz
org.eclipse.cdt-a62a1f4305224446e2630ac86fcf99f025a38d3e.zip
change the limit of arguments to match OS limit
Diffstat (limited to 'core/org.eclipse.cdt.core.win32/library/starter/starter.cpp')
-rw-r--r--core/org.eclipse.cdt.core.win32/library/starter/starter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core.win32/library/starter/starter.cpp b/core/org.eclipse.cdt.core.win32/library/starter/starter.cpp
index 81df10d8942..8aea36ac357 100644
--- a/core/org.eclipse.cdt.core.win32/library/starter/starter.cpp
+++ b/core/org.eclipse.cdt.core.win32/library/starter/starter.cpp
@@ -24,7 +24,7 @@
#include <stdio.h>
// #define DEBUG_MONITOR
-#define MAX_CMD_LINE_LENGTH (1024)
+#define MAX_CMD_LINE_LENGTH (2049)
int copyTo(char * target, const char * source, int cpyLength, int availSpace);

Back to the top