summaryrefslogtreecommitdiff
path: root/run_and_record
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-02-09 11:25:52 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-02-09 11:25:52 +0100
commit41cec047b34823050bc579a9296b26e08dc5e8a6 (patch)
tree1f940f7658e6ef8ca460b6f16365cadc215b9368 /run_and_record
parent98df9bd946bf8f2651c53803b9e2b412b84c8497 (diff)
downloadapps-science_tools-41cec047b34823050bc579a9296b26e08dc5e8a6.tar.gz
Change source of forstio in default
Diffstat (limited to 'run_and_record')
-rw-r--r--run_and_record/c++/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_and_record/c++/main.cpp b/run_and_record/c++/main.cpp
index c52d5f5..c21ec9d 100644
--- a/run_and_record/c++/main.cpp
+++ b/run_and_record/c++/main.cpp
@@ -54,7 +54,7 @@ saw::error_or<void> run_program(int argc, char** argv){
if(WIFEXITED(status)){
child_exit_code = WEXITSTATUS(status);
}else{
- return saw::make_error<saw::err::critical>("Program existed unexpectedly");
+ return saw::make_error<saw::err::critical>("Program exited unexpectedly");
}
}