mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Use the correct return type for getopt
Use the correct return type for getopt otherwise clang complains about tautological-constant-out-of-range-compare. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Sterling Jensen <sterlingjensen@users.noreply.github.com> Closes #11359
This commit is contained in:
+1
-1
@@ -8492,7 +8492,7 @@ zfs_do_wait(int argc, char **argv)
|
||||
{
|
||||
boolean_t enabled[ZFS_WAIT_NUM_ACTIVITIES];
|
||||
int error, i;
|
||||
char c;
|
||||
int c;
|
||||
|
||||
/* By default, wait for all types of activity. */
|
||||
for (i = 0; i < ZFS_WAIT_NUM_ACTIVITIES; i++)
|
||||
|
||||
@@ -44,7 +44,7 @@ int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
boolean_t verbose = B_FALSE;
|
||||
char c;
|
||||
int c;
|
||||
while ((c = getopt(argc, argv, "v")) != -1) {
|
||||
switch (c) {
|
||||
case 'v':
|
||||
|
||||
@@ -10147,7 +10147,7 @@ int
|
||||
zpool_do_wait(int argc, char **argv)
|
||||
{
|
||||
boolean_t verbose = B_FALSE;
|
||||
char c;
|
||||
int c;
|
||||
char *value;
|
||||
int i;
|
||||
unsigned long count;
|
||||
|
||||
@@ -421,7 +421,7 @@ int
|
||||
zstream_do_redup(int argc, char *argv[])
|
||||
{
|
||||
boolean_t verbose = B_FALSE;
|
||||
char c;
|
||||
int c;
|
||||
|
||||
while ((c = getopt(argc, argv, "v")) != -1) {
|
||||
switch (c) {
|
||||
|
||||
Reference in New Issue
Block a user