mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
gio-launch-desktop: Fix the G_STATIC_ASSERT expressions for clang
The clang compiler requires the static_assert expression to be an integral constant expression. `"text"` is not, but `sizeof "text"` is. Fixes #2740
This commit is contained in:
parent
d37beda25e
commit
37dba1c425
@ -121,8 +121,8 @@ journal_stream_fd (const char *identifier,
|
||||
/* Arbitrary large size for the sending buffer, from systemd */
|
||||
int large_buffer_size = 8 * 1024 * 1024;
|
||||
|
||||
G_STATIC_ASSERT (LOG_EMERG == 0 && "Linux ABI defines LOG_EMERG");
|
||||
G_STATIC_ASSERT (LOG_DEBUG == 7 && "Linux ABI defines LOG_DEBUG");
|
||||
G_STATIC_ASSERT (LOG_EMERG == 0 && sizeof "Linux ABI defines LOG_EMERG");
|
||||
G_STATIC_ASSERT (LOG_DEBUG == 7 && sizeof "Linux ABI defines LOG_DEBUG");
|
||||
|
||||
fd = socket (AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user