* Makefile.in: Build intermediate cygcheck.o to force use of MINGW_CXXFLAGS.

* cygcheck.cc (cygwin_info): Intitialize variable to quiet g++ warning.
(dump_sysinfo): Make variables unsigned to quiet g++ warnings.
* strace.cc (version_string): Rename from SCCSid.
(add_child): Remove unused variable.
(version): Use version_string.  Avoid use of fprintf.
This commit is contained in:
Christopher Faylor
2002-01-22 03:17:59 +00:00
parent f3647dd7e6
commit ad466e2f75
4 changed files with 33 additions and 8 deletions

View File

@@ -352,7 +352,8 @@ cygwin_info (HANDLE h)
return;
}
char *dll_major;
static char dummy[] = "\0\0\0\0\0\0\0";
char *dll_major = dummy;
bufend = buf + size;
while (buf < bufend)
if ((buf = (char *) memchr (buf, '%', bufend - buf)) == NULL)
@@ -1051,13 +1052,13 @@ dump_sysinfo ()
}
printf ("\n");
unsigned int ml_fsname = 4, ml_dir = 7, ml_type = 6;
unsigned ml_fsname = 4, ml_dir = 7, ml_type = 6;
struct mntent *mnt;
setmntent (0, 0);
while ((mnt = getmntent (0)))
{
int n = (int) strlen (mnt->mnt_fsname);
unsigned n = (int) strlen (mnt->mnt_fsname);
if (ml_fsname < n)
ml_fsname = n;
n = (int) strlen (mnt->mnt_dir);