From b2ec4a04f604da56299e44f58a42d8eb20bfff45 Mon Sep 17 00:00:00 2001 From: EgorWeders Date: Thu, 12 Dec 2024 13:08:58 +0700 Subject: [PATCH] Fixes typo in app name Fixes https://github.com/eclipse-iceoryx/iceoryx-project-template/issues/7 --- src/publisher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/publisher.cpp b/src/publisher.cpp index 320b345..e5b6e72 100644 --- a/src/publisher.cpp +++ b/src/publisher.cpp @@ -23,7 +23,7 @@ int main() { - constexpr const char APP_NAME[]{"publihser"}; + constexpr const char APP_NAME[]{"publisher"}; iox::runtime::PoshRuntime::initRuntime(APP_NAME); iox::popo::Publisher publisher({"MyApp", "Counter", "u64"});