Code cleanup

This commit is contained in:
Pierre Pronchery 2011-03-21 23:45:27 +00:00
parent 981567e218
commit 7d85948347

View File

@ -1,5 +1,5 @@
/* $Id$ */
/* Copyright (c) 2009 Pierre Pronchery <khorben@defora.org> */
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */
/* 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;
}