diff options
Diffstat (limited to 'nt/cmdproxy.c')
-rw-r--r-- | nt/cmdproxy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nt/cmdproxy.c b/nt/cmdproxy.c index 0674a3fdc84..f3433f63684 100644 --- a/nt/cmdproxy.c +++ b/nt/cmdproxy.c @@ -319,7 +319,7 @@ try_dequote_cmdline (char* cmdline) /* Dequoting can only subtract characters, so the length of the original command line is a bound on the amount of scratch space we need. This length, in turn, is bounded by the 32k - CreateProces limit. */ + CreateProcess limit. */ char * old_pos = cmdline; char * new_cmdline = alloca (strlen(cmdline)); char * new_pos = new_cmdline; @@ -843,4 +843,3 @@ main (int argc, char ** argv) return 0; } - |