cmp: Use _ultoa in place of ultostr
authorWill Sowerbutts <will@sowerbutts.com>
Sat, 3 Jan 2015 22:49:43 +0000 (22:49 +0000)
committerWill Sowerbutts <will@sowerbutts.com>
Sat, 3 Jan 2015 23:36:37 +0000 (23:36 +0000)
Applications/util/cmp.c

index 57057f5..86893f3 100644 (file)
@@ -112,7 +112,7 @@ void main(int argc, char *argv[])
                        pos++;
 
                putstr("Files differ at byte position ");
-               bp1 = ultostr(pos, buf1, 10);
+               bp1 = _ultoa(pos);
                putstr(bp1);
                putstr("\n");
                goto differ;