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

Commit b156c6e3 authored by Mikhail Naganov's avatar Mikhail Naganov
Browse files

AudioService: Align 'makeAlsaAddressString' with the rest

AudioDevicePort in Java and native code do not use
a trailing semicolon for the ALSA device address.

Bug: 273252382
Test: m
Change-Id: Iccbf841aee5bb168e0771750b789e154c43ecf8b
parent 2fef8f6e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -896,7 +896,7 @@ public class AudioService extends IAudioService.Stub
    // Defines the format for the connection "address" for ALSA devices
    public static String makeAlsaAddressString(int card, int device) {
        return "card=" + card + ";device=" + device + ";";
        return "card=" + card + ";device=" + device;
    }
    public static final class Lifecycle extends SystemService {