Skip to content

Commit

Permalink
Removed parameter being passed to static function printSyntax() as it…
Browse files Browse the repository at this point in the history
… is (#545)

incorrect and may be causing serious problems with acscte.e.
Incremented the calacs version.
  • Loading branch information
mdlpstsci authored Apr 8, 2021
1 parent 82c7c54 commit a5a7d35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/acs/calacs/acscte/maincte.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int doMainCTE (int argc, char **argv) {
if (argv[i][1] == '-')
{
printf ("Unrecognized option %s\n", argv[i]);
printSyntax(program);
printSyntax();
freeOnExit(&ptrReg);
exit (ERROR_RETURN);
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/acs/calacs/include/acsversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define INCL_ACSVERSION_H

/* This string is written to the output primary header as CAL_VER. */
#define ACS_CAL_VER "10.3.0 (31-Dec-2020)"
#define ACS_CAL_VER_NUM "10.3.0"
#define ACS_CAL_VER "10.3.1 (07-Apr-2021)"
#define ACS_CAL_VER_NUM "10.3.1"

/* name and version number of the CTE correction algorithm */
#define ACS_GEN1_CTE_NAME "PixelCTE 2012"
Expand Down

0 comments on commit a5a7d35

Please sign in to comment.