aboutsummaryrefslogtreecommitdiff
path: root/client/src/util/io.h
diff options
context:
space:
mode:
authorauth12 <[email protected]>2020-08-01 11:15:55 -0700
committerauth12 <[email protected]>2020-08-01 11:15:55 -0700
commit5bbda279685f52693d4f5d9cb1500e295e06fc1e (patch)
tree87cc4aa993afe879f8b5dffbbe7013dcf8e5dc44 /client/src/util/io.h
parentAdded server support for both x64 and x32 images with automatic selection. (diff)
downloadloader-5bbda279685f52693d4f5d9cb1500e295e06fc1e.tar.xz
loader-5bbda279685f52693d4f5d9cb1500e295e06fc1e.zip
Started security.
Diffstat (limited to 'client/src/util/io.h')
-rw-r--r--client/src/util/io.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/util/io.h b/client/src/util/io.h
index 03d6964..adb63f7 100644
--- a/client/src/util/io.h
+++ b/client/src/util/io.h
@@ -3,7 +3,6 @@
#include <fmt/format.h>
#include <fmt/color.h>
-
namespace io {
template<typename... Args>
void log(const std::string_view str, Args... params) {
@@ -31,5 +30,5 @@ namespace io {
fmt::print(msg, std::forward<Args>(params)...);
}
- bool read_file(const std::string_view name, std::vector<char>& out);
+ bool read_file(const std::string_view path, std::vector<char>& out);
}; // namespace io