commit | e8de8f47c6221f96acaa3d02e666f94c9aafd775 | [log] [tgz] |
---|---|---|
author | Nick Kralevich <nnk@google.com> | Fri May 14 10:29:13 2010 -0700 |
committer | Nick Kralevich <nnk@google.com> | Fri May 14 10:29:13 2010 -0700 |
tree | a86fbca9a6c2aebc8cc8c558d932c3e4ed9d2744 | |
parent | 5b803f0865aca0a06dfb59f75885569c3f9f2eb3 [diff] [blame] |
Forgot to fix one -Wformat-security in my previous change. Fixed. Change-Id: Ice7459b30e1d7dbfe400b68d27ebc04fcca78bae
diff --git a/camera/tests/CameraServiceTest/CameraServiceTest.cpp b/camera/tests/CameraServiceTest/CameraServiceTest.cpp index bf0a3b2..3c8d553 100644 --- a/camera/tests/CameraServiceTest/CameraServiceTest.cpp +++ b/camera/tests/CameraServiceTest/CameraServiceTest.cpp
@@ -341,7 +341,7 @@ } status_t MSurface::setBufferCount(int bufferCount) { - INFO(__func__); + INFO("%s", __func__); return NULL; }