ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit 7763d75d7a4d88a3bfb39c42883509bed3e40bf8
parent d8a51e73b91975867acb40e15db8bc2c3735e2ae
Author: sin <sin@2f30.org>
Date:   Tue, 17 Sep 2013 16:44:45 +0100

Correct function name in error

Diffstat:
Mhalt.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/halt.c b/halt.c @@ -43,6 +43,6 @@ main(int argc, char *argv[]) if (syscall(__NR_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, NULL) < 0) - eprintf("halt:"); + eprintf("reboot:"); return 0; }