Skip to content

Commit 9d4233f

Browse files
committed
Upstream: cppcheck fixes
1 parent 73e6f4d commit 9d4233f

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

cmd/Makefile.am

+6
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ endif
2424
if BUILD_MACOS
2525
SUBDIRS += zed os
2626
endif
27+
28+
PHONY = cppcheck
29+
cppcheck: $(CPPCHECKDIRS)
30+
set -e ; for dir in $(CPPCHECKDIRS) ; do \
31+
$(MAKE) -C $$dir cppcheck ; \
32+
done

include/sys/zio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ enum zio_flag {
219219
ZIO_FLAG_NOPWRITE = 1 << 28,
220220
ZIO_FLAG_REEXECUTED = 1 << 29,
221221
ZIO_FLAG_DELEGATED = 1 << 30,
222-
ZIO_FLAG_FASTWRITE = 1 << 31,
222+
ZIO_FLAG_FASTWRITE = 1ULL << 31,
223223
};
224224

225225
#define ZIO_FLAG_MUSTSUCCEED 0

lib/libicp/Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,4 @@ nodist_libicp_la_SOURCES = \
8383
$(KERNEL_C) \
8484
$(KERNEL_ASM)
8585

86+
include $(top_srcdir)/config/CppCheck.am

module/Makefile.in

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ check:
1515
clean clean-Linux clean-FreeBSD \
1616
modules_install modules_install-Linux modules_install-FreeBSD \
1717
modules_uninstall modules_uninstall-Linux modules_uninstall-FreeBSD \
18-
cppcheck cppcheck-Linux cppcheck-FreeBSD
18+
cppcheck cppcheck-Linux cppcheck-FreeBSD cppcheck-macOS
1919

2020
# For FreeBSD, use debug options from ./configure if not overridden.
2121
export WITH_DEBUG ?= @WITH_DEBUG@
@@ -144,6 +144,9 @@ cppcheck-Linux:
144144
cppcheck-FreeBSD:
145145
@true
146146

147+
cppcheck-macOS:
148+
@true
149+
147150
cppcheck: cppcheck-@ac_system@
148151

149152
distdir:

0 commit comments

Comments
 (0)