Skip to content

Commit

Permalink
don t exit
Browse files Browse the repository at this point in the history
  • Loading branch information
forero committed Nov 1, 2018
1 parent 9b83cf7 commit 262aeeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1244,14 +1244,14 @@ struct onplate radec2xy (const struct target & O, const struct plate & P) {
"onplate problem with xy2radec conversion [dRA (arcsec)]: %f\n",
dra);
fprintf(stderr, "[dDEC (arcsec)]: %f \n", ddec);
myexit(1);
// myexit(1);
}
if (fabs(ddec) > 0.01) {
// 0.01 arcsecond precision
fprintf(stderr,
"onplate problem with xy2radec conversion [dDEC]: %f\n", ddec);
fprintf(stderr, "[dRA]: %f\n", dra);
myexit(1);
// myexit(1);
}
return obj;
}
Expand Down

0 comments on commit 262aeeb

Please sign in to comment.