*: whitespace fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-10-28 18:57:19 +02:00
parent 7765095441
commit e4dcba1c10
82 changed files with 185 additions and 183 deletions

View File

@ -32,7 +32,7 @@ int renice_main(int argc UNUSED_PARAM, char **argv)
static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
int retval = EXIT_SUCCESS;
int which = PRIO_PROCESS; /* Default 'which' value. */
int which = PRIO_PROCESS; /* Default 'which' value. */
int use_relative = 0;
int adjustment, new_priority;
unsigned who;
@ -57,7 +57,7 @@ int renice_main(int argc UNUSED_PARAM, char **argv)
arg += 2;
}
if (!arg) { /* No args? Then show usage. */
if (!arg) { /* No args? Then show usage. */
bb_show_usage();
}
@ -100,7 +100,7 @@ int renice_main(int argc UNUSED_PARAM, char **argv)
if (use_relative) {
int old_priority;
errno = 0; /* Needed for getpriority error detection. */
errno = 0; /* Needed for getpriority error detection. */
old_priority = getpriority(which, who);
if (errno) {
bb_perror_msg(Xetpriority_msg, 'g');