summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Mortimer <sam@mortimer.me.uk>2018-01-02 15:18:26 -0800
committerSam Mortimer <sam@mortimer.me.uk>2018-01-05 19:18:52 -0800
commit0bc51c4d98990bd6fd687b762f87d137bd467bec (patch)
tree6fda0bbca3e2f0d0ea2ae530016ab628faedd4e2
parent4c5276d87763b816e6a4f61eb9dcc99e26dfbe02 (diff)
downloadandroid_hardware_lineage_lineagehw-0bc51c4d98990bd6fd687b762f87d137bd467bec.tar.gz
android_hardware_lineage_lineagehw-0bc51c4d98990bd6fd687b762f87d137bd467bec.tar.bz2
android_hardware_lineage_lineagehw-0bc51c4d98990bd6fd687b762f87d137bd467bec.zip
lineagehw: Fix LiveDisplay features indication in log message
Change-Id: If337f010e0999883246b815919bccc1e6d0cf3ac
-rw-r--r--org/lineageos/hardware/LiveDisplayVendorImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org/lineageos/hardware/LiveDisplayVendorImpl.java b/org/lineageos/hardware/LiveDisplayVendorImpl.java
index db4ec4f..c3efd4c 100644
--- a/org/lineageos/hardware/LiveDisplayVendorImpl.java
+++ b/org/lineageos/hardware/LiveDisplayVendorImpl.java
@@ -44,7 +44,7 @@ public class LiveDisplayVendorImpl {
final int features = native_getSupportedFeatures();
if (features > 0) {
- Log.i(TAG, "Using native LiveDisplay backend (features: " + sFeatures + ")");
+ Log.i(TAG, "Using native LiveDisplay backend (features: " + features + ")");
}
sNativeLibraryLoaded = features > 0;