Skip to content

Commit 42ff892

Browse files
authored
Merge pull request #2398 from willend/main
Silence warning in case NeXus is built in
2 parents 69e9031 + 103a901 commit 42ff892

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/lib/share/mccode-r.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2020,7 +2020,7 @@ int mcdetector_out_axis_nexus(NXhandle f, char *label, char *var, int rank, long
20202020
char *valid;
20212021
valid=malloc(sizeof(char)*CHAR_BUF_LENGTH);
20222022
if (!valid ) {
2023-
printf("Fatal memory error allocating label axis of length %li, exiting!\n", CHAR_BUF_LENGTH);
2023+
printf("Fatal memory error allocating label axis of length %i, exiting!\n", CHAR_BUF_LENGTH);
20242024
free(axis);
20252025
return(NX_ERROR);
20262026
}

0 commit comments

Comments
 (0)