From edc53291d77c22c7ca1ae5c7b865504a9cb6a4c7 Mon Sep 17 00:00:00 2001
From: Alex Klyubin <klyubin@google.com>
Date: Wed, 29 Mar 2017 09:05:35 -0700
Subject: [PATCH] Fix warnings

Unescaped apostrophe is not permitted inside macros.

Test: mmm system/sepolicy -- no warnings
Bug: 34980020
Change-Id: I893a41508d8b62975771967fd6e40e50d188c7c1
---
 public/domain.te | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/public/domain.te b/public/domain.te
index 3ed451a15..3f8eb6632 100644
--- a/public/domain.te
+++ b/public/domain.te
@@ -451,11 +451,11 @@ full_treble_only(`
 
   ##
   # On full TREBLE devices core android components and vendor components may
-  # not directly access each other's data types. All communication must occur
+  # not directly access each other data types. All communication must occur
   # over HW binder. Open file descriptors may be passed and read/write/stat
   # operations my be performed on those FDs. Disallow all other operations.
   #
-  # do not allow vendor component access to coredomains' data types
+  # do not allow vendor component access to coredomains data types
   neverallow {
     domain
     -coredomain
@@ -464,7 +464,7 @@ full_treble_only(`
   } core_data_file_type:{
     file_class_set
   } ~{ append getattr ioctl read write };
-  # do not allow vendor component access to coredomains' data directories.
+  # do not allow vendor component access to coredomains data directories.
   # /data has the system_data_file type. Allow all domains to have dir
   # search permissions which allows path traversal.
   neverallow {
-- 
GitLab