Skip to content

Commit fbc32bd

Browse files
committed
Core: fix static_assert error (missing message)
1 parent 086e954 commit fbc32bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/configurator/cpipe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static int cpipe_fd[2] = {INVALID_FD, INVALID_FD};
2727
static const char *module = "Configuration pipe";
2828

2929
// Size of the request must allow atomic write! (see write() for help)
30-
static_assert(sizeof(struct ipx_cpipe_req) <= PIPE_BUF);
30+
static_assert(sizeof(struct ipx_cpipe_req) <= PIPE_BUF, "non-atomic write!");
3131

3232
int
3333
ipx_cpipe_init()

0 commit comments

Comments
 (0)