Displaying 2 results from an estimated 2 matches for "debug_putc".
Did you mean:
debug_auth
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...mponent */
- 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_ok = false;
- _rv = rv = vsnprintf(buffer, BUFFER_SIZE, format, ap);
-
+ rv = vsnprintf(buffe...
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