diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-05-17 08:54:00 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-06-19 16:28:28 +0200 |
commit | bfd5a0687fcc65e5617d5bab69ff653393f23e70 (patch) | |
tree | 10f216d7a6ebdd984df003259c5b84fe139a91bd /src/basic/fd-util.h | |
parent | Fix confusion between killer and prey (diff) | |
download | systemd-bfd5a0687fcc65e5617d5bab69ff653393f23e70.tar.xz systemd-bfd5a0687fcc65e5617d5bab69ff653393f23e70.zip |
various: move const ptr indicator to return value
Diffstat (limited to 'src/basic/fd-util.h')
-rw-r--r-- | src/basic/fd-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/fd-util.h b/src/basic/fd-util.h index a047c3a3f4..4080b67a66 100644 --- a/src/basic/fd-util.h +++ b/src/basic/fd-util.h @@ -163,7 +163,7 @@ char *format_proc_pid_fd_path(char buf[static PROC_PID_FD_PATH_MAX], pid_t pid, int proc_fd_enoent_errno(void); -const char *accmode_to_string(int flags); +const char* accmode_to_string(int flags); /* Like ASSERT_PTR, but for fds */ #define ASSERT_FD(fd) \ |