From b371b705c76eaa641325b517154a20c374ce41da Mon Sep 17 00:00:00 2001 From: Marcin Bukat Date: Tue, 8 May 2012 21:59:01 +0200 Subject: [PATCH] fix yellow introduced in 10829b2 Change-Id: Ice66e976f90ad5d37c116b27f94c96e17e97e70f --- apps/plugin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/plugin.c b/apps/plugin.c index 96b008c551..c15731aec5 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -1034,6 +1034,8 @@ static int close_wrapper(int fd) static int creat_wrapper(const char *pathname, mode_t mode) { + (void)mode; + int fd = PREFIX(creat)(pathname, mode); if(fd >= 0)