comparison Plugins/Engine/OrthancPlugins.cpp @ 2820:3e048b243d20

typo
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 13 Sep 2018 11:37:57 +0200
parents 925d8dc03a23
children 807169f85ba9
comparison
equal deleted inserted replaced
2819:1b6497e412e4 2820:3e048b243d20
1070 { 1070 {
1071 const _OrthancPluginRestCallback& p = 1071 const _OrthancPluginRestCallback& p =
1072 *reinterpret_cast<const _OrthancPluginRestCallback*>(parameters); 1072 *reinterpret_cast<const _OrthancPluginRestCallback*>(parameters);
1073 1073
1074 LOG(INFO) << "Plugin has registered a REST callback " 1074 LOG(INFO) << "Plugin has registered a REST callback "
1075 << (lock ? "with" : "witout") 1075 << (lock ? "with" : "without")
1076 << " mutual exclusion on: " 1076 << " mutual exclusion on: "
1077 << p.pathRegularExpression; 1077 << p.pathRegularExpression;
1078 1078
1079 pimpl_->restCallbacks_.push_back(new PImpl::RestCallback(p.pathRegularExpression, p.callback, lock)); 1079 pimpl_->restCallbacks_.push_back(new PImpl::RestCallback(p.pathRegularExpression, p.callback, lock));
1080 } 1080 }