# HG changeset patch # User Michiel Broek # Date 1425735608 -3600 # Node ID 1713dc0cd20f4e11bd3e2b7d5324e8605f4225c9 # Parent bf183e6d0b216bb1db91674fced6f45fd95767a2 Fixed error diff -r bf183e6d0b21 -r 1713dc0cd20f thermferm/thermferm.c --- a/thermferm/thermferm.c Sat Mar 07 14:35:12 2015 +0100 +++ b/thermferm/thermferm.c Sat Mar 07 14:40:08 2015 +0100 @@ -104,7 +104,7 @@ { char buf[21]; - snprintt(buf, 20, "Old mode %s", UNITMODE[current_unit->mode]); + snprintf(buf, 20, "Old mode %s", UNITMODE[current_unit->mode]); lcdPuts(lcdHandle, buf); lcdPosition(lcdHandle, 0, 1); }