From: cookie Date: Fri, 18 Mar 2016 04:50:37 +0000 (+0900) Subject: fix the Svace issue for TRACE_STRERROR X-Git-Tag: accepted/tizen/mobile/20160318.114153~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2638a34c1db6a52ff7ea32b66f737708476e247b;p=platform%2Fframework%2Fweb%2Fdownload-provider.git fix the Svace issue for TRACE_STRERROR Change-Id: Ifcad1050d42c8ca1f818241e6891976e94019a78 Signed-off-by: cookie --- diff --git a/provider/include/download-provider-log.h b/provider/include/download-provider-log.h index 5b1b0cd..5d04e3e 100755 --- a/provider/include/download-provider-log.h +++ b/provider/include/download-provider-log.h @@ -30,7 +30,7 @@ #define TRACE_DEBUG(...) do { } while(0) #endif #define TRACE_ERROR(format, ARG...) LOGE(format, ##ARG) -#define TRACE_STRERROR(format, ARG...) LOGE(format" [%s]", ##ARG, strerror(errno)) +#define TRACE_STRERROR(format, ARG...) LOGE(format" [%s]", ##ARG) #define TRACE_INFO(format, ARG...) LOGI(format, ##ARG) #define TRACE_WARN(format, ARG...) LOGW(format, ##ARG)