summaryrefslogtreecommitdiff
path: root/src/backlight
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-10-23 18:52:53 +0200
committerLennart Poettering <lennart@poettering.net>2015-10-24 23:04:42 +0200
commit4f5dd3943bef8a04be7e3b838b822bb9a7ad6cb3 (patch)
treededa3509752ff079dded29c145e4a8fae41812f1 /src/backlight
parentdea7b6b043f0cd9e34ee719b9b612c3a4776387e (diff)
downloadsystemd-4f5dd3943bef8a04be7e3b838b822bb9a7ad6cb3.tar.gz
util: split out escaping code into escape.[ch]
This really deserves its own file, given how much code this is now.
Diffstat (limited to 'src/backlight')
-rw-r--r--src/backlight/backlight.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backlight/backlight.c b/src/backlight/backlight.c
index c8961de946..84ce842cae 100644
--- a/src/backlight/backlight.c
+++ b/src/backlight/backlight.c
@@ -19,12 +19,13 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#include "util.h"
-#include "mkdir.h"
+#include "def.h"
+#include "escape.h"
#include "fileio.h"
#include "libudev.h"
+#include "mkdir.h"
#include "udev-util.h"
-#include "def.h"
+#include "util.h"
static struct udev_device *find_pci_or_platform_parent(struct udev_device *device) {
struct udev_device *parent;