summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-03-14 23:32:37 +0900
committerGitHub <noreply@github.com>2023-03-14 14:32:37 +0000
commit166ade197993211b82ff8dfce1a4c240a549a59b (patch)
tree9c75869b64cf93a6494fc993a5b0f4683add4248
parent1b427801352b5dcfdc2277f6343166c01afe97d6 (diff)
downloadvSomeIP-166ade197993211b82ff8dfce1a4c240a549a59b.tar.gz
Fix typo in application_impl.cpp (#419)
unintialized -> uninitialized
-rw-r--r--implementation/runtime/src/application_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/implementation/runtime/src/application_impl.cpp b/implementation/runtime/src/application_impl.cpp
index e854958..810e091 100644
--- a/implementation/runtime/src/application_impl.cpp
+++ b/implementation/runtime/src/application_impl.cpp
@@ -367,7 +367,7 @@ void application_impl::start() {
}
#endif
if (!is_initialized_) {
- VSOMEIP_ERROR << "Trying to start an unintialized application.";
+ VSOMEIP_ERROR << "Trying to start an uninitialized application.";
return;
}