search for: _rv

Displaying 2 results from an estimated 2 matches for "_rv".

Did you mean: _r
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...nue; 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_ok = false; - _rv = rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); - + rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); if (rv < 0) return; diff --git a/cor...
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing