# HG changeset patch # User Elliott Hughes # Date 1421790761 21600 # Node ID aa6487c2c5f86de48392ff832b427fdd27273ccb # Parent 10922d83392a445660c27bae291d11943e136041 fix typo in printf diff -r 10922d83392a -r aa6487c2c5f8 toys/posix/printf.c --- a/toys/posix/printf.c Sun Jan 18 14:06:14 2015 -0600 +++ b/toys/posix/printf.c Tue Jan 20 15:52:41 2015 -0600 @@ -22,7 +22,7 @@ #define FOR_printf #include "toys.h" -// Detect matching character (return true/valse) and advance pointer if match. +// Detect matching character (return true/false) and advance pointer if match. static int eat(char **s, char c) { int x = (**s == c);