You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
747 B
27 lines
747 B
1 month ago
|
From 088644fb1773b64ca45dec497589517e1774eac1 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
|
||
|
Date: Tue, 27 Aug 2024 11:33:14 +0200
|
||
|
Subject: [PATCH 1/5] display: Make cgroup constructor local
|
||
|
|
||
|
This silences a warning about a missing function declaration.
|
||
|
---
|
||
|
src/core/display.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/core/display.c b/src/core/display.c
|
||
|
index 4c9038e627..97f591a876 100644
|
||
|
--- a/src/core/display.c
|
||
|
+++ b/src/core/display.c
|
||
|
@@ -1619,7 +1619,7 @@ extract_app_id_from_cgroup (const char *cgroup)
|
||
|
return g_steal_pointer (&app_id);
|
||
|
}
|
||
|
|
||
|
-MetaCGroup*
|
||
|
+static MetaCGroup*
|
||
|
meta_cgroup_new (const char *path)
|
||
|
{
|
||
|
MetaCGroup *cgroup;
|
||
|
--
|
||
|
2.44.0.501.g19981daefd.dirty
|
||
|
|