AutoAnswer

Change-Id: Icfc040b5ffc5d7429b208f80103e4d227e635f62
GitLab: #4
diff --git a/AudioFilter/main.cpp b/AudioFilter/main.cpp
index f390db8..045a909 100644
--- a/AudioFilter/main.cpp
+++ b/AudioFilter/main.cpp
@@ -17,6 +17,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
  */
+
 #include <iostream>
 #include <string.h>
 #include <thread>
@@ -44,9 +45,9 @@
 EXPORT_PLUGIN JAMI_PluginExitFunc
 JAMI_dynPluginInit(const JAMI_PluginAPI* api)
 {
-    std::cout << "**************************" << std::endl << std::endl;
+    std::cout << "*******************" << std::endl << std::endl;
     std::cout << "**  AudioFilter  **" << std::endl;
-    std::cout << "**************************" << std::endl << std::endl;
+    std::cout << "*******************" << std::endl << std::endl;
     std::cout << " Version " << AudioFilter_VERSION_MAJOR << "." << AudioFilter_VERSION_MINOR << "."
               << AudioFilter_VERSION_PATCH << std::endl;
 
@@ -57,11 +58,11 @@
         std::string dataPath;
         api->invokeService(api, "getPluginDataPath", &dataPath);
 
-        auto fmpfilterMediaHandler = std::make_unique<jami::filterMediaHandler>(std::move(ppm), std::move(dataPath));
+        auto fmpfilterMediaHandler = std::make_unique<jami::filterMediaHandler>(std::move(ppm),
+                                                                                std::move(dataPath));
         if (api->manageComponent(api, "CallMediaHandlerManager", fmpfilterMediaHandler.release())) {
             return nullptr;
         }
-
     }
     return pluginExit;
 }