50 lines
1.4 KiB
Diff
50 lines
1.4 KiB
Diff
From 1b7065f25457fea9f9ee7100437b12815b92a38c Mon Sep 17 00:00:00 2001
|
|
From: Kamil Dudka <kdudka@redhat.com>
|
|
Date: Wed, 11 May 2011 16:46:57 +0200
|
|
Subject: [PATCH 4/4] findutils-4.5.7-warnings.patch
|
|
|
|
---
|
|
find/exec.c | 2 +-
|
|
xargs/xargs.c | 5 +++--
|
|
2 files changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/find/exec.c b/find/exec.c
|
|
index aa69fe3..f731d82 100644
|
|
--- a/find/exec.c
|
|
+++ b/find/exec.c
|
|
@@ -326,7 +326,7 @@ launch (struct buildcmd_control *ctl, void *usercontext, int argc, char **argv)
|
|
}
|
|
}
|
|
|
|
- if (bc_args_exceed_testing_limit (argv))
|
|
+ if (bc_args_exceed_testing_limit ((const char **) argv))
|
|
errno = E2BIG;
|
|
else
|
|
execvp (argv[0], argv);
|
|
diff --git a/xargs/xargs.c b/xargs/xargs.c
|
|
index 3cc1832..35f6822 100644
|
|
--- a/xargs/xargs.c
|
|
+++ b/xargs/xargs.c
|
|
@@ -1224,7 +1224,7 @@ xargs_do_exec (struct buildcmd_control *ctl, void *usercontext, int argc, char *
|
|
|
|
prep_child_for_exec ();
|
|
|
|
- if (bc_args_exceed_testing_limit (argv))
|
|
+ if (bc_args_exceed_testing_limit ((const char **) argv))
|
|
errno = E2BIG;
|
|
else
|
|
execvp (argv[0], argv);
|
|
@@ -1242,7 +1242,8 @@ xargs_do_exec (struct buildcmd_control *ctl, void *usercontext, int argc, char *
|
|
* utility if we run it, for POSIX compliance on the
|
|
* handling of exit values.
|
|
*/
|
|
- write (fd[1], &errno, sizeof (int));
|
|
+ int sink = write (fd[1], &errno, sizeof (int));
|
|
+ (void) sink;
|
|
}
|
|
|
|
close (fd[1]);
|
|
--
|
|
1.7.4.4
|
|
|