summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/spawn.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-31 21:23:57 +0000
committerChristopher Faylor <me@cgf.cx>2006-01-31 21:23:57 +0000
commitfd34affe5d4d0ee0a168ea6d721eb9d037305d92 (patch)
treef5018a46aa63056f804a454c8f8bac6dc38ed709 /winsup/cygwin/spawn.cc
parent0ad7b0eb028c6505192eed19595cdaba38ab2886 (diff)
downloadcygnal-fd34affe5d4d0ee0a168ea6d721eb9d037305d92.tar.gz
cygnal-fd34affe5d4d0ee0a168ea6d721eb9d037305d92.tar.bz2
cygnal-fd34affe5d4d0ee0a168ea6d721eb9d037305d92.zip
* spawn.cc (av::fixup): Remove unused argument.
(spawn_guts): Remove capitalization in debugging.
Diffstat (limited to 'winsup/cygwin/spawn.cc')
-rw-r--r--winsup/cygwin/spawn.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc
index 7bc1b6942..f906dce68 100644
--- a/winsup/cygwin/spawn.cc
+++ b/winsup/cygwin/spawn.cc
@@ -340,7 +340,7 @@ class av
for (int i = calloced; i < argc; i++)
argv[i] = cstrdup1 (argv[i]);
}
- int fixup (child_info_types, const char *, path_conv&, const char *);
+ int fixup (const char *, path_conv&, const char *);
};
int
@@ -477,7 +477,7 @@ spawn_guts (const char * prog_arg, const char *const *argv,
}
bool wascygexec = real_path.iscygexec ();
- res = newargv.fixup (chtype, prog_arg, real_path, ext);
+ res = newargv.fixup (prog_arg, real_path, ext);
if (res)
goto out;
@@ -555,7 +555,7 @@ spawn_guts (const char * prog_arg, const char *const *argv,
if (one_line.ix >= MAXWINCMDLEN)
{
- debug_printf ("Command line too long (>32K), return E2BIG");
+ debug_printf ("command line too long (>32K), return E2BIG");
set_errno (E2BIG);
res = -1;
goto out;
@@ -1049,7 +1049,7 @@ spawnvpe (int mode, const char *file, const char * const *argv,
}
int
-av::fixup (child_info_types chtype, const char *prog_arg, path_conv& real_path, const char *ext)
+av::fixup (const char *prog_arg, path_conv& real_path, const char *ext)
{
bool exeext = strcasematch (ext, ".exe");
if (exeext && real_path.iscygexec () || strcasematch (ext, ".bat")