Issue 4: Typos in lib/sprintf.c
Status:  Fixed
Owner:
Closed:  Aug 2013
Reported by pauljone...@gmail.com, May 19, 2011
change #include "print.h" to #include "printf.h"

And

void * bufwrite( void * memptr, const char * buf, size_t n )
{
    char *dst = (char *)memptr;
    
    while ( len-- )
        *dst++ = *buf++;
    
    return dst;
}

change while ( len-- ) to while ( n-- )
Aug 2, 2013
Project Member #1 neil.johnson71
(No comment was entered for this change.)
Status: Fixed
Owner: neil.johnson71