mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-11-28 00:07:43 +03:00
Compiling on arm64 freebsd-13.2 and arm64 almalinux-8 brings currently
this error:
```
CC tests/zfs-tests/cmd/clonefile.o
tests/zfs-tests/cmd/clonefile.c:166:43: error: result of comparison of \
constant -1 with expression of type 'char' is always true \
[-Werror,-Wtautological-constant-out-of-range-compare]
while ((c = getopt(argc, argv, "crfdq")) != -1) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~
1 error generated.
gmake[2]: *** [Makefile:8675: tests/zfs-tests/cmd/clonefile.o] Error 1
```
Fix: use correct variable type `int`.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Rob Norris <robn@despairlabs.com>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #15783
|
||
|---|---|---|
| .. | ||
| checksum | ||
| file | ||
| linux_dos_attributes | ||
| .gitignore | ||
| badsend.c | ||
| btree_test.c | ||
| chg_usr_exec.c | ||
| clone_mmap_cached.c | ||
| clone_mmap_write.c | ||
| clonefile.c | ||
| cp_files.c | ||
| ctime.c | ||
| devname2devid.c | ||
| dir_rd_update.c | ||
| dosmode_readonly_write.c | ||
| draid.c | ||
| ereports.c | ||
| get_diff.c | ||
| getversion.c | ||
| idmap_util.c | ||
| libzfs_input_check.c | ||
| Makefile.am | ||
| mkbusy.c | ||
| mkfile.c | ||
| mkfiles.c | ||
| mktree.c | ||
| mmap_exec.c | ||
| mmap_libaio.c | ||
| mmap_seek.c | ||
| mmap_sync.c | ||
| mmapwrite.c | ||
| nvlist_to_lua.c | ||
| readmmap.c | ||
| rename_dir.c | ||
| renameat2.c | ||
| rm_lnkcnt_zero_file.c | ||
| send_doall.c | ||
| stride_dd.c | ||
| suid_write_to_file.c | ||
| threadsappend.c | ||
| truncate_test.c | ||
| user_ns_exec.c | ||
| xattrtest.c | ||
| zed_fd_spill-zedlet.c | ||
| zfs_diff-socket.c | ||