<div>Hi.</div><div> </div><div>On the way to create makedevs.test, I found naming differs from busybox if the count is 1.</div><div>For example, Stdin for makedevs is "AAA c 1 0 0 2 5 0 0 1"</div><div>And it makes AAA0 device instead of AAA. (Busybox makes AAA in this case)</div><div>I'm not sure which one is correct, but think operation should follow common way.</div><div> </div><div> </div><div>diff --git a/toys/other/makedevs.c b/toys/other/makedevs.c<br>index 0d20a57..4b6b4b7 100644<br>--- a/toys/other/makedevs.c<br>+++ b/toys/other/makedevs.c<br>@@ -84,7 +84,7 @@ void makedevs_main()<br>     while (*node == '/') node++; // using relative path<br> <br>     for (i = 0; (!cnt && !i) || i < cnt; i++) {<br>-      if (cnt) {<br>+      if (cnt > 1) {<br>         snprintf(toybuf, sizeof(toybuf), "%s%u", node, st_val + i);<br>         ptr = toybuf;<br>       } else ptr = node;<br>-- </div>