mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-08 08:10:18 +01:00
_dbus_listen_systemd_sockets: fds are signed ints (-Wsign-compare)
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=17289 Reviewed-by: Ralf Habacker <ralf.habacker@freenet.de>
This commit is contained in:
parent
51a718c678
commit
719829a41d
1 changed files with 1 additions and 1 deletions
|
|
@ -1165,7 +1165,7 @@ _dbus_listen_systemd_sockets (int **fds,
|
|||
{
|
||||
#ifdef HAVE_SYSTEMD
|
||||
int r, n;
|
||||
unsigned fd;
|
||||
int fd;
|
||||
int *new_fds;
|
||||
|
||||
_DBUS_ASSERT_ERROR_IS_CLEAR (error);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue