summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher R. Palmer <crpalmer@gmail.com>2015-10-10 21:30:07 -0400
committerChristopher R. Palmer <crpalmer@gmail.com>2015-11-10 04:57:19 -0500
commitea955faaa40d68e0ad114617c84989020a81386b (patch)
tree6be11a475c926516ce633c3b434e7ff5f6bf8c26
parentd1d49956ed8cfe4c2363670a3d019c52a4128f8c (diff)
downloadandroid_hardware_intel_img_hwcomposer-ea955faaa40d68e0ad114617c84989020a81386b.tar.gz
android_hardware_intel_img_hwcomposer-ea955faaa40d68e0ad114617c84989020a81386b.tar.bz2
android_hardware_intel_img_hwcomposer-ea955faaa40d68e0ad114617c84989020a81386b.zip
Update #define syntax for string concatenation
Change-Id: I50a7b4d0d423cbf6349909f6b44ded7c42704c20
-rw-r--r--merrifield/common/utils/HwcTrace.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/merrifield/common/utils/HwcTrace.h b/merrifield/common/utils/HwcTrace.h
index 83151c6..4cba819 100644
--- a/merrifield/common/utils/HwcTrace.h
+++ b/merrifield/common/utils/HwcTrace.h
@@ -26,11 +26,11 @@ extern "C" {
#endif
// Helper to automatically preappend classname::functionname to the log message
-#define VTRACE(fmt,...) ALOGV("%s: "fmt, __func__, ##__VA_ARGS__)
-#define DTRACE(fmt,...) ALOGD("%s: "fmt, __func__, ##__VA_ARGS__)
-#define ITRACE(fmt,...) ALOGI("%s: "fmt, __func__, ##__VA_ARGS__)
-#define WTRACE(fmt,...) ALOGW("%s: "fmt, __func__, ##__VA_ARGS__)
-#define ETRACE(fmt,...) ALOGE("%s: "fmt, __func__, ##__VA_ARGS__)
+#define VTRACE(fmt,...) ALOGV("%s: " fmt, __func__, ##__VA_ARGS__)
+#define DTRACE(fmt,...) ALOGD("%s: " fmt, __func__, ##__VA_ARGS__)
+#define ITRACE(fmt,...) ALOGI("%s: " fmt, __func__, ##__VA_ARGS__)
+#define WTRACE(fmt,...) ALOGW("%s: " fmt, __func__, ##__VA_ARGS__)
+#define ETRACE(fmt,...) ALOGE("%s: " fmt, __func__, ##__VA_ARGS__)
// Function call tracing