Fix missing comma
This is discovered by Clang's -Wstring-concatenation diagnostic. Test: presubmit Bug: 175068488 Change-Id: Ied97b32e6707236621387bb06993d52a662d9d83
This commit is contained in:
parent
badd64bdbd
commit
b4b20ae65d
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue