search for: 77e8da4

Displaying 1 result from an estimated 1 matches for "77e8da4".

Did you mean: 77e8d5b
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...LL, NULL }; 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 b...