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/shared/user-record-show.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/shared/user-record-show.h')
-rw-r--r-- | src/shared/user-record-show.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/user-record-show.h b/src/shared/user-record-show.h index dcef065d92..777c555a90 100644 --- a/src/shared/user-record-show.h +++ b/src/shared/user-record-show.h @@ -4,7 +4,7 @@ #include "user-record.h" #include "group-record.h" -const char *user_record_state_color(const char *state); +const char* user_record_state_color(const char *state); void user_record_show(UserRecord *hr, bool show_full_group_info); void group_record_show(GroupRecord *gr, bool show_full_user_info); |