fix missing explicit keyword

Change-Id: Ifeb3d4f1f56bf189299e79728c280e16b21039b9
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>
diff --git a/util.hpp b/util.hpp
index de0221a..f2d68ea 100644
--- a/util.hpp
+++ b/util.hpp
@@ -195,7 +195,7 @@
         Descriptor(Descriptor&&) = delete;
         Descriptor& operator=(Descriptor &&) = delete;
 
-        Descriptor(int fd) : fd(fd) {}
+        explicit Descriptor(int fd) : fd(fd) {}
 
         /* @brief sets the internal file descriptor with the given descriptor
          *        and closes the old descriptor.