Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f80b6310 authored by Tom Cherry's avatar Tom Cherry Committed by Elliott Hughes
Browse files

Fix transitive includes

android_filesystem_config.h transitively includes headers that are no
longer needed and are being removed as part of an overall clean up.
This change instead includes linux/capability.h which is what the
affected file really meant to include.

Bug: 149785767
Test: build
Change-Id: I6c6cda0985077389189101dcdaa524d841346975
parent 32d19158
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -18,14 +18,13 @@
#define LOG_TAG "asset"

#include <inttypes.h>
#include <linux/capability.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#include <private/android_filesystem_config.h> // for AID_SYSTEM

#include <sstream>
#include <string>