aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-11 14:03:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-11 14:03:30 +0300
commit6dad6c604f89b8ffcddf08f9d81eecbb6b52b173 (patch)
treee5c222144ebc6270f5cab1ed27d828ab3ee4a687 /utils
parentadd libnt_path_converter (diff)
downloadwindows7-drivers-6dad6c604f89b8ffcddf08f9d81eecbb6b52b173.tar.gz
windows7-drivers-6dad6c604f89b8ffcddf08f9d81eecbb6b52b173.zip
utils: bugfix
Diffstat (limited to '')
-rw-r--r--utils/install_service.cpp4
-rw-r--r--utils/libnt_path_converter/utils/convert_nt_path.cpp2
-rw-r--r--utils/libservice/test/windows_error.cpp4
-rw-r--r--utils/start_service.cpp4
-rw-r--r--utils/stop_service.cpp4
-rw-r--r--utils/uninstall_service.cpp4
6 files changed, 11 insertions, 11 deletions
diff --git a/utils/install_service.cpp b/utils/install_service.cpp
index 7bed0d5..44fb199 100644
--- a/utils/install_service.cpp
+++ b/utils/install_service.cpp
@@ -8,8 +8,8 @@
#include "libservice/interface.hpp"
+#include <exception>
#include <iostream>
-#include <system_error>
int main(int argc, char* argv[])
{
@@ -23,7 +23,7 @@ int main(int argc, char* argv[])
{
libservice::Service::install(libservice::ServiceManager::open(), argv[1], argv[2]);
}
- catch (const std::system_error& e)
+ catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
diff --git a/utils/libnt_path_converter/utils/convert_nt_path.cpp b/utils/libnt_path_converter/utils/convert_nt_path.cpp
index d80cc5a..158395d 100644
--- a/utils/libnt_path_converter/utils/convert_nt_path.cpp
+++ b/utils/libnt_path_converter/utils/convert_nt_path.cpp
@@ -8,8 +8,8 @@
#include "libnt_path_converter/all.hpp"
-#include <iostream>
#include <exception>
+#include <iostream>
int wmain(int argc, wchar_t* argv[])
{
diff --git a/utils/libservice/test/windows_error.cpp b/utils/libservice/test/windows_error.cpp
index 461b4e6..376a7c8 100644
--- a/utils/libservice/test/windows_error.cpp
+++ b/utils/libservice/test/windows_error.cpp
@@ -10,8 +10,8 @@
#include <Windows.h>
+#include <exception>
#include <iostream>
-#include <system_error>
int main()
{
@@ -19,7 +19,7 @@ int main()
{
throw std::system_error(ERROR_FILE_NOT_FOUND, libservice::WinErrorCategory::get(), LIBSERVICE_ERROR_PREFIX);
}
- catch (const std::system_error& e)
+ catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return -1;
diff --git a/utils/start_service.cpp b/utils/start_service.cpp
index 05ddba2..58b756d 100644
--- a/utils/start_service.cpp
+++ b/utils/start_service.cpp
@@ -8,8 +8,8 @@
#include "libservice/interface.hpp"
+#include <exception>
#include <iostream>
-#include <system_error>
int main(int argc, char* argv[])
{
@@ -23,7 +23,7 @@ int main(int argc, char* argv[])
{
libservice::Service::open(libservice::ServiceManager::open(), argv[1]).start();
}
- catch (const std::system_error& e)
+ catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
diff --git a/utils/stop_service.cpp b/utils/stop_service.cpp
index 6f4a700..bd4f8ce 100644
--- a/utils/stop_service.cpp
+++ b/utils/stop_service.cpp
@@ -8,8 +8,8 @@
#include "libservice/interface.hpp"
+#include <exception>
#include <iostream>
-#include <system_error>
int main(int argc, char* argv[])
{
@@ -23,7 +23,7 @@ int main(int argc, char* argv[])
{
libservice::Service::open(libservice::ServiceManager::open(), argv[1]).stop();
}
- catch (const std::system_error& e)
+ catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
diff --git a/utils/uninstall_service.cpp b/utils/uninstall_service.cpp
index 5929dfc..737742c 100644
--- a/utils/uninstall_service.cpp
+++ b/utils/uninstall_service.cpp
@@ -8,8 +8,8 @@
#include "libservice/interface.hpp"
+#include <exception>
#include <iostream>
-#include <system_error>
int main(int argc, char* argv[])
{
@@ -23,7 +23,7 @@ int main(int argc, char* argv[])
{
libservice::Service::open(libservice::ServiceManager::open(), argv[1]).uninstall();
}
- catch (const std::system_error& e)
+ catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;