Resolve warnings on Windows

Appease the compiler by resolving some of the reported warnings,
including:

- Control paths that don't return.

- Potentially uninitialized variables.

- Unused local variables.

- Unreachable code.

- Type safety.

- Synchronize declarations with definitions for functions.
This commit is contained in:
Asanka Herath
2010-06-02 21:23:52 -04:00
parent 869e970f5d
commit 24cbddd4b9
11 changed files with 12 additions and 12 deletions

View File

@@ -87,7 +87,7 @@ opendir(const char * filespec)
}
do {
long len = strlen(fd.name);
size_t len = strlen(fd.name);
struct dirent * e;
if (dp->n_entries == dp->nc_entries) {