From e5630b4297d234b7fc1f51da06e5c12506130013 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 21 Apr 2014 13:47:42 +1000 Subject: Updated to match toybox 0.4.8, xmsprintf() -> xmprintf(). --- dumbsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumbsh.c b/dumbsh.c index 7975ebe..9ad0204 100644 --- a/dumbsh.c +++ b/dumbsh.c @@ -239,7 +239,7 @@ void dumbsh_main(void) int fd; // Load bash history. - t = xmsprintf("%s/%s", t ? t : "", ".bash_history"); + t = xmprintf("%s/%s", t ? t : "", ".bash_history"); if (-1 != (fd = open(t, O_RDONLY))) { while ((t = get_line(fd))) TT.history = dlist_add(&TT.history, t); -- cgit v1.1