mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-21 16:28:14 +02:00
This simplifies the code and also avoids a warning with _FORTIFY_SOURCE:
../pipewire/src/modules/module-protocol-pulse/pulse-server.c: In function ‘create_pid_file’:
../pipewire/src/modules/module-protocol-pulse/pulse-server.c:6028:2: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6028 | write(fd, pid_str, strlen(pid_str) + 1);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|---|---|---|
| .. | ||
| collect.c | ||
| dbus-name.c | ||
| defs.h | ||
| ext-stream-restore.c | ||
| extension.c | ||
| format.c | ||
| manager.c | ||
| manager.h | ||
| message.c | ||
| module-null-sink.c | ||
| module.c | ||
| pulse-server.c | ||
| pulse-server.h | ||
| sample.c | ||
| volume.c | ||