search for: db60295

Displaying 1 result from an estimated 1 matches for "db60295".

Did you mean: d40295
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...}; dep = module->str_table + module->needed[i]; /* strip everything but the last component */ - j = len = strlen(dep); - if (!len) + if (!strlen(dep)) continue; if (strchr(dep, '/')) { diff --git a/com32/lib/vdprintf.c b/com32/lib/vdprintf.c index 77e8da4..db60295 100644 --- a/com32/lib/vdprintf.c +++ b/com32/lib/vdprintf.c @@ -45,14 +45,13 @@ static void debug_putc(char c) void vdprintf(const char *format, va_list ap) { - int rv, _rv; + int rv; char buffer[BUFFER_SIZE]; char *p; static bool debug_init = false; static bool debug...