We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a19c3 commit bc4a44fCopy full SHA for bc4a44f
src/alice/exe.cpp
@@ -130,9 +130,13 @@ int EXE_action(const TEXT* database, const SINT64 switches)
130
}
131
132
133
+ // It takes longer to print errors, so don't call the started() method and just return
134
+ if (error)
135
+ return FINI_ERROR;
136
+
137
tdgbl->uSvc->started();
138
- return error ? FINI_ERROR : FINI_OK;
139
+ return FINI_OK;
140
141
142
@@ -186,9 +190,12 @@ int EXE_two_phase(const TEXT* database, const SINT64 switches)
186
190
187
191
188
192
193
194
195
189
196
197
- return (error ? FINI_ERROR : FINI_OK);
198
199
200
201
//____________________________________________________________
0 commit comments