summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-07 14:04:52 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-07 14:04:52 +0100
commit6718adc7571d03c2d0813d7548daefc848e77e40 (patch)
tree14718529a0b94d9a1040058ef24ce15264f56b20 /modules
parent13cb3114b55138de29957b0687fadbda79249ee1 (diff)
downloadforstio-forstio-6718adc7571d03c2d0813d7548daefc848e77e40.tar.gz
Removing constructor brackets
Diffstat (limited to 'modules')
-rw-r--r--modules/remote-filesystem/c++/easy.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/remote-filesystem/c++/easy.hpp b/modules/remote-filesystem/c++/easy.hpp
index 19e70b4..bfee13b 100644
--- a/modules/remote-filesystem/c++/easy.hpp
+++ b/modules/remote-filesystem/c++/easy.hpp
@@ -31,7 +31,7 @@ error_or<void> encode_and_write_file(const std::filesystem::path& p_, const data
auto& srv = eo_srv.get_value();
id<Sch> fid{0u};
- auto eo_write = srv->send({fid}, dat);
+ auto eo_write = srv->send(fid, dat);
if(eo_write.is_error()){
return eo_write;
}