summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnie Hua <ernesthua@google.com>2018-07-10 15:15:40 -0700
committerErnie Hua <ernesthua@google.com>2018-07-10 15:21:24 -0700
commit5c7a3bd4f910dc9227abfbe2a7e8644770ca888d (patch)
tree27add3beec1f3a9fbf404a3540494ce1d1404fc7
parent7904e9c2d777674adf3f71f438001824773ef323 (diff)
downloadlibhardware-5c7a3bd4f910dc9227abfbe2a7e8644770ca888d.tar.gz
Wrong variable being printed in ALOGV statement.
Bug: b/111308664 Test: Force on the log message to ensure it is printed. Change-Id: Id7df120ee024b1bf5530cd06ee4c386da6b75d29
-rw-r--r--hardware.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hardware.c b/hardware.c
index 77cfd8d5..bd55087b 100644
--- a/hardware.c
+++ b/hardware.c
@@ -133,7 +133,7 @@ static int load(const char *id,
}
} else {
ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p",
- id, path, *pHmi, handle);
+ id, path, hmi, handle);
}
*pHmi = hmi;