From b4b20ae65d2d81c86321e99f79944b84e0a4a961 Mon Sep 17 00:00:00 2001 From: Yi Kong Date: Wed, 15 Dec 2021 17:23:36 +0800 Subject: [PATCH] Fix missing comma This is discovered by Clang's -Wstring-concatenation diagnostic. Test: presubmit Bug: 175068488 Change-Id: Ied97b32e6707236621387bb06993d52a662d9d83 --- init/ueventd_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/ueventd_test.cpp b/init/ueventd_test.cpp index fc3cdfb7d..1ac6d8ee0 100644 --- a/init/ueventd_test.cpp +++ b/init/ueventd_test.cpp @@ -99,7 +99,7 @@ TEST(ueventd, setfscreatecon_IsPerThread) { const char* const contexts[] = { "u:object_r:audio_device:s0", "u:object_r:sensors_device:s0", - "u:object_r:video_device:s0" + "u:object_r:video_device:s0", "u:object_r:zero_device:s0", };