Fixed minor printk bug.

This commit is contained in:
L. Bradley LaBoon 2014-02-11 12:08:12 -05:00
parent 9994b80c0d
commit 6a78658eae

View File

@ -202,7 +202,7 @@ int printk(struct vgastate *term, const char *fmt, ...)
break;
// Unknown character; just print the character
default:
term_putChar(term, fmt[i+end]);
term_putChar(term, fmt[i]);
numPrinted++;
end = 1;
break;