Code cleanup

This commit is contained in:
Pierre Pronchery 2009-10-20 14:26:12 +00:00
parent 805cb07e39
commit f6a962d21c

View File

@ -1,5 +1,5 @@
/* $Id$ */ /* $Id$ */
/* Copyright (c) 2007 Pierre Pronchery <khorben@defora.org> */ /* Copyright (c) 2009 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Unix utils */ /* This file is part of DeforaOS Unix utils */
/* utils is not free software; you can redistribute it and/or modify it under /* utils is not free software; you can redistribute it and/or modify it under
* the terms of the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 * the terms of the Creative Commons Attribution-NonCommercial-ShareAlike 3.0
@ -48,6 +48,6 @@ int main(int argc, char * argv[])
perror("getlogin"); perror("getlogin");
return 2; return 2;
} }
printf("%s\n", lgnm); puts(lgnm);
return 0; return 0;
} }