Skip to content

Commit e0e6046

Browse files
committed
Adding a message when we fail to allocate memory on the GPU
1 parent 95b9a66 commit e0e6046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ode_solver/ode_solver.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void set_ode_initial_conditions_for_all_volumes(struct ode_solver *solver, struc
161161
solver->pitch = soicg_fn_pt(solver, ode_extra_config);
162162

163163
if(solver->sv == NULL) {
164-
log_error_and_exit("Error allocating memory for the ODE's state vector. Exiting!")
164+
log_error_and_exit("Error allocating memory for the ODE's state vector. Exiting!");
165165
}
166166
#endif
167167
} else {

0 commit comments

Comments
 (0)