mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-03 01:17:45 +03:00
basic: fix hosed return value in skip_session()
../src/basic/cgroup-util.c: In function ‘skip_session’:
../src/basic/cgroup-util.c:1241:32: error: incompatible types when returning type ‘_Bool’ but ‘const char *’ was expected
1241 | return false;
(cherry picked from commit db8e720984
)
This commit is contained in:
parent
addeb46993
commit
ad647734c7
@ -1238,7 +1238,7 @@ static const char *skip_session(const char *p) {
|
|||||||
* here. */
|
* here. */
|
||||||
|
|
||||||
if (!session_id_valid(buf))
|
if (!session_id_valid(buf))
|
||||||
return false;
|
return NULL;
|
||||||
|
|
||||||
p += n;
|
p += n;
|
||||||
p += strspn(p, "/");
|
p += strspn(p, "/");
|
||||||
|
Loading…
Reference in New Issue
Block a user