Skip to content
Snippets Groups Projects
Commit 003aa96e authored by Matthew Pitkin's avatar Matthew Pitkin
Browse files

LALInferenceKombine.c: fix compilation error

 - Compilation error caused by declaration of params being an incompatible
   size with that required for the function it is passed to
 - refs #5730
parent 5508da14
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ INT4 on_your_marks(LALInferenceRunState *run_state) { ...@@ -97,7 +97,7 @@ INT4 on_your_marks(LALInferenceRunState *run_state) {
char *infile = ppt->value; char *infile = ppt->value;
FILE *input = fopen(infile, "r"); FILE *input = fopen(infile, "r");
char params[128][128]; char params[128][VARNAME_MAX];
INT4 *col_order = XLALCalloc(ndim, sizeof(INT4)); INT4 *col_order = XLALCalloc(ndim, sizeof(INT4));
INT4 ncols; INT4 ncols;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment