Skip to content

Commit

Permalink
rumtime to runtime and keep sobriety
Browse files Browse the repository at this point in the history
  • Loading branch information
ninioArtillero authored and benswift committed Feb 23, 2025
1 parent 30764cc commit a777ac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Scheme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5634,9 +5634,9 @@ static void Eval_Cycle(scheme *sc, enum scheme_opcodes op) {
std::cout << "TIME:" << extemp::UNIV::TIME << " END:" << sc->call_end_time << std::endl;
char msg[512];
if(is_symbol(sc->last_symbol_apply)) {
sprintf(msg,"\"%s\" Exceeded maximum rumtime. If you need a higher default process execution time use sys:set-default-timeout\n",symname_sc(sc,sc->last_symbol_apply));
sprintf(msg,"\"%s\" Exceeded maximum runtime. If you need a higher default process execution time use sys:set-default-timeout\n",symname_sc(sc,sc->last_symbol_apply));
}else{
sprintf(msg,"Exceeded maximum rumtime. If you need a higher default process execution time use sys:set-default-timeout\n");
sprintf(msg,"Exceeded maximum runtime. If you need a higher default process execution time use sys:set-default-timeout\n");
}
sc->call_end_time = ULLONG_MAX;
_Error_1(sc, msg, sc->NIL, sc->code->_debugger->_size);
Expand Down

0 comments on commit a777ac7

Please sign in to comment.