aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chmod.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 17:17:14 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 17:17:14 +0000
commite3206585f41ad674d5d6f9f04f4cb50efdc21119 (patch)
treec47584ea54140cdd66f0833c8202875e8f4fe844 /coreutils/chmod.c
parent1384f29bcb54c994159c68508b9c359d7d2abc6a (diff)
downloadbusybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.tar.gz
busybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.tar.bz2
busybox-w32-e3206585f41ad674d5d6f9f04f4cb50efdc21119.zip
- add some ATTRIBUTE_UNUSED.
- use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@13718 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chmod.c')
-rw-r--r--coreutils/chmod.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/coreutils/chmod.c b/coreutils/chmod.c
index 3014d374a..b69cccdf1 100644
--- a/coreutils/chmod.c
+++ b/coreutils/chmod.c
@@ -7,20 +7,7 @@
7 * Reworked by (C) 2002 Vladimir Oleynik <dzo@simtreas.ru> 7 * Reworked by (C) 2002 Vladimir Oleynik <dzo@simtreas.ru>
8 * to correctly parse '-rwxgoa' 8 * to correctly parse '-rwxgoa'
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */ 11 */
25 12
26/* BB_AUDIT SUSv3 compliant */ 13/* BB_AUDIT SUSv3 compliant */
@@ -44,7 +31,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
44 return (FALSE); 31 return (FALSE);
45} 32}
46 33
47int chmod_main(int argc, char **argv) 34int chmod_main(int ATTRIBUTE_UNUSED argc, char **argv)
48{ 35{
49 int retval = EXIT_SUCCESS; 36 int retval = EXIT_SUCCESS;
50 int recursiveFlag = FALSE; 37 int recursiveFlag = FALSE;