From 7e46ea01e82324ab6daa11c3a4825a705e6174cf Mon Sep 17 00:00:00 2001 From: Ajay Dudani Date: Sat, 18 Dec 2010 18:52:20 -0800 Subject: [PATCH] Fix string literal compiler error Change-Id: Id83e70332688077ec0f6fdbff6d982d795730e9b --- softap/jni/QWiFiSoftApCfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softap/jni/QWiFiSoftApCfg.c b/softap/jni/QWiFiSoftApCfg.c index cc41f41..12b3e1c 100644 --- a/softap/jni/QWiFiSoftApCfg.c +++ b/softap/jni/QWiFiSoftApCfg.c @@ -35,7 +35,7 @@ int rc; \ rc = snprintf(resp, sizeof(resp), "failure %s:%s",msg, code); \ if ( rc == sizeof(resp)) resp[sizeof(resp)-1] = 0; \ - LOGE(resp); \ + LOGE("%s", resp); \ } static struct sockaddr_nl rtnl_local;