gator: Version 5.21.1

Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Signed-off-by: Jon Medhurst <tixy@linaro.org>
diff --git a/tools/gator/daemon/Monitor.cpp b/tools/gator/daemon/Monitor.cpp
index 74f22ee..0428887 100644
--- a/tools/gator/daemon/Monitor.cpp
+++ b/tools/gator/daemon/Monitor.cpp
@@ -1,5 +1,5 @@
 /**
- * Copyright (C) ARM Limited 2013-2014. All rights reserved.
+ * Copyright (C) ARM Limited 2013-2015. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -38,17 +38,17 @@
 	mFd = epoll_create(16);
 #endif
 	if (mFd < 0) {
-		logg->logMessage("%s(%s:%i): epoll_create1 failed", __FUNCTION__, __FILE__, __LINE__);
+		logg->logMessage("epoll_create1 failed");
 		return false;
 	}
 
 #ifndef EPOLL_CLOEXEC
-  int fdf = fcntl(mFd, F_GETFD);
-  if ((fdf == -1) || (fcntl(mFd, F_SETFD, fdf | FD_CLOEXEC) != 0)) {
-		logg->logMessage("%s(%s:%i): fcntl failed", __FUNCTION__, __FILE__, __LINE__);
-    ::close(mFd);
-    return -1;
-  }
+	int fdf = fcntl(mFd, F_GETFD);
+	if ((fdf == -1) || (fcntl(mFd, F_SETFD, fdf | FD_CLOEXEC) != 0)) {
+		logg->logMessage("fcntl failed");
+		::close(mFd);
+		return -1;
+	}
 #endif
 
 	return true;
@@ -60,7 +60,7 @@
 	event.data.fd = fd;
 	event.events = EPOLLIN;
 	if (epoll_ctl(mFd, EPOLL_CTL_ADD, fd, &event) != 0) {
-		logg->logMessage("%s(%s:%i): epoll_ctl failed", __FUNCTION__, __FILE__, __LINE__);
+		logg->logMessage("epoll_ctl failed");
 		return false;
 	}
 
@@ -74,7 +74,7 @@
 		if (errno == EINTR) {
 			result = 0;
 		} else {
-			logg->logMessage("%s(%s:%i): epoll_wait failed", __FUNCTION__, __FILE__, __LINE__);
+			logg->logMessage("epoll_wait failed");
 		}
 	}