From 7d859483479933c811d9c5597855b8b686a2807c Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 21 Mar 2011 23:45:27 +0000 Subject: [PATCH] Code cleanup --- tools/utilbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/utilbox.c b/tools/utilbox.c index 3cd2995..aa93847 100644 --- a/tools/utilbox.c +++ b/tools/utilbox.c @@ -1,5 +1,5 @@ /* $Id$ */ -/* Copyright (c) 2009 Pierre Pronchery */ +/* Copyright (c) 2011 Pierre Pronchery */ /* This file is part of DeforaOS Unix utils */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -47,7 +47,7 @@ static int _list(Call * calls) size_t i; for(i = 0; calls[i].name != NULL; i++) - printf("%s\n", calls[i].name); + puts(calls[i].name); return 0; }