IVGCVSW-4594 Refactor the GatordMockService and GatordMockMain to extract a BasePipeServer

Signed-off-by: Finn Williams <Finn.Williams@arm.com>
Change-Id: I03c1b46104dadc491dba6075865e486f78aa60fa
diff --git a/src/profiling/PacketVersionResolver.cpp b/src/profiling/PacketVersionResolver.cpp
index 4178ace..689abbb 100644
--- a/src/profiling/PacketVersionResolver.cpp
+++ b/src/profiling/PacketVersionResolver.cpp
@@ -60,7 +60,7 @@
     {
         return Version(1, 1, 0);
     }
-    if( packetKey == DectivateTimeLinePacket )
+    if( packetKey == DeactivateTimeLinePacket )
     {
         return Version(1, 1, 0);
     }
diff --git a/src/profiling/PacketVersionResolver.hpp b/src/profiling/PacketVersionResolver.hpp
index 6222eb0..3112f5e 100644
--- a/src/profiling/PacketVersionResolver.hpp
+++ b/src/profiling/PacketVersionResolver.hpp
@@ -34,7 +34,7 @@
 };
 
 static const PacketKey ActivateTimeLinePacket(0 , 6);
-static const PacketKey DectivateTimeLinePacket(0 , 7);
+static const PacketKey DeactivateTimeLinePacket(0 , 7);
 
 class PacketVersionResolver final
 {