summaryrefslogtreecommitdiff
path: root/src/nice.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-08-22 18:56:06 +0200
committerJim Meyering <meyering@redhat.com>2009-08-25 09:21:00 +0200
commit5e778f7c8d1ecf3d8f11385db013af2ba026e2a5 (patch)
treee460d471f37f0dce1ba06f60f88114d1a65326c4 /src/nice.c
parent2bc0f3caaafeb240cdcfd050b7ad1fe0ad14addf (diff)
downloadcoreutils-5e778f7c8d1ecf3d8f11385db013af2ba026e2a5.tar.xz
global: convert indentation-TABs to spaces
Transformed via this shell code: t=$'\t' git ls-files \ | grep -vE '(^|/)((GNU)?[Mm]akefile|ChangeLog)|\.(am|mk)$' \ | grep -vE 'tests/pr/|help2man' \ | xargs grep -lE "^ *$t" \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
Diffstat (limited to 'src/nice.c')
-rw-r--r--src/nice.c74
1 files changed, 37 insertions, 37 deletions
diff --git a/src/nice.c b/src/nice.c
index d4432a37a..4a3c09212 100644
--- a/src/nice.c
+++ b/src/nice.c
@@ -66,7 +66,7 @@ usage (int status)
{
if (status != EXIT_SUCCESS)
fprintf (stderr, _("Try `%s --help' for more information.\n"),
- program_name);
+ program_name);
else
{
printf (_("Usage: %s [OPTION] [COMMAND [ARG]...]\n"), program_name);
@@ -77,7 +77,7 @@ With no COMMAND, print the current niceness. Nicenesses range from\n\
\n\
-n, --adjustment=N add integer N to the niceness (default 10)\n\
"),
- - NZERO, NZERO - 1);
+ - NZERO, NZERO - 1);
fputs (HELP_OPTION_DESCRIPTION, stdout);
fputs (VERSION_OPTION_DESCRIPTION, stdout);
printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME);
@@ -105,66 +105,66 @@ main (int argc, char **argv)
atexit (close_stdout);
parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE_NAME, Version,
- usage, AUTHORS, (char const *) NULL);
+ usage, AUTHORS, (char const *) NULL);
for (i = 1; i < argc; /* empty */)
{
char const *s = argv[i];
if (s[0] == '-' && ISDIGIT (s[1 + (s[1] == '-' || s[1] == '+')]))
- {
- adjustment_given = s + 1;
- ++i;
- }
+ {
+ adjustment_given = s + 1;
+ ++i;
+ }
else
- {
- int optc;
- int fake_argc = argc - (i - 1);
- char **fake_argv = argv + (i - 1);
-
- /* Ensure that any getopt diagnostics use the right name. */
- fake_argv[0] = argv[0];
-
- /* Initialize getopt_long's internal state. */
- optind = 0;
-
- optc = getopt_long (fake_argc, fake_argv, "+n:", longopts, NULL);
- i += optind - 1;
-
- if (optc == '?')
- usage (EXIT_FAILURE);
- else if (optc == 'n')
- adjustment_given = optarg;
- else /* optc == -1 */
- break;
- }
+ {
+ int optc;
+ int fake_argc = argc - (i - 1);
+ char **fake_argv = argv + (i - 1);
+
+ /* Ensure that any getopt diagnostics use the right name. */
+ fake_argv[0] = argv[0];
+
+ /* Initialize getopt_long's internal state. */
+ optind = 0;
+
+ optc = getopt_long (fake_argc, fake_argv, "+n:", longopts, NULL);
+ i += optind - 1;
+
+ if (optc == '?')
+ usage (EXIT_FAILURE);
+ else if (optc == 'n')
+ adjustment_given = optarg;
+ else /* optc == -1 */
+ break;
+ }
}
if (adjustment_given)
{
/* If the requested adjustment is outside the valid range,
- silently bring it to just within range; this mimics what
- "setpriority" and "nice" do. */
+ silently bring it to just within range; this mimics what
+ "setpriority" and "nice" do. */
enum { MIN_ADJUSTMENT = 1 - 2 * NZERO, MAX_ADJUSTMENT = 2 * NZERO - 1 };
long int tmp;
if (LONGINT_OVERFLOW < xstrtol (adjustment_given, NULL, 10, &tmp, ""))
- error (EXIT_FAILURE, 0, _("invalid adjustment %s"),
- quote (adjustment_given));
+ error (EXIT_FAILURE, 0, _("invalid adjustment %s"),
+ quote (adjustment_given));
adjustment = MAX (MIN_ADJUSTMENT, MIN (tmp, MAX_ADJUSTMENT));
}
if (i == argc)
{
if (adjustment_given)
- {
- error (0, 0, _("a command must be given with an adjustment"));
- usage (EXIT_FAILURE);
- }
+ {
+ error (0, 0, _("a command must be given with an adjustment"));
+ usage (EXIT_FAILURE);
+ }
/* No command given; print the niceness. */
errno = 0;
current_niceness = GET_NICENESS ();
if (current_niceness == -1 && errno != 0)
- error (EXIT_FAILURE, errno, _("cannot get niceness"));
+ error (EXIT_FAILURE, errno, _("cannot get niceness"));
printf ("%d\n", current_niceness);
exit (EXIT_SUCCESS);
}