diff --git a/src/OptionHandlerImpl.cc b/src/OptionHandlerImpl.cc index af17c176..3b66e3ae 100644 --- a/src/OptionHandlerImpl.cc +++ b/src/OptionHandlerImpl.cc @@ -623,7 +623,7 @@ void OptimizeConcurrentDownloadsOptionHandler::parseArg( PrefPtr pref = PREF_OPTIMIZE_CONCURRENT_DOWNLOADS_COEFFA; std::string* sptr = &coeff_a; for (;;) { - char *end; + char* end; errno = 0; auto dbl = strtod(sptr->c_str(), &end); if (errno != 0 || sptr->c_str() + sptr->size() != end) { diff --git a/src/RpcMethodFactory.cc b/src/RpcMethodFactory.cc index 82579b9e..0e276f8a 100644 --- a/src/RpcMethodFactory.cc +++ b/src/RpcMethodFactory.cc @@ -76,15 +76,19 @@ const std::vector& allMethodNames() { return rpcMethodNames; } namespace { std::vector rpcNotificationsNames = { - "aria2.onDownloadStart", "aria2.onDownloadPause", "aria2.onDownloadStop", - "aria2.onDownloadComplete", "aria2.onDownloadError", - #ifdef ENABLE_BITTORRENT + "aria2.onDownloadStart", "aria2.onDownloadPause", + "aria2.onDownloadStop", "aria2.onDownloadComplete", + "aria2.onDownloadError", +#ifdef ENABLE_BITTORRENT "aria2.onBtDownloadComplete", - #endif // ENABLE_BITTORRENT +#endif // ENABLE_BITTORRENT }; } // namespace -const std::vector& allNotificationsNames() { return rpcNotificationsNames; } +const std::vector& allNotificationsNames() +{ + return rpcNotificationsNames; +} namespace { std::unique_ptr createMethod(const std::string& methodName) diff --git a/src/RpcMethodImpl.cc b/src/RpcMethodImpl.cc index d727501c..3b2c7d39 100644 --- a/src/RpcMethodImpl.cc +++ b/src/RpcMethodImpl.cc @@ -1453,7 +1453,7 @@ RpcResponse SystemListMethodsRpcMethod::execute(RpcRequest req, std::unique_ptr SystemListNotificationsRpcMethod::process(const RpcRequest& req, - DownloadEngine* e) + DownloadEngine* e) { auto list = List::g(); for (auto& s : allNotificationsNames()) {