We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A recent change (#752) to ./sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c at line 84 is causing a problem for some users:
./sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c
char mosaic_name[STRING] = "solo_mosaic"
to:
char mosaic_name[128] = "solo_mosaic"
Changing it back to STRING or to '256' fixes the problem.
The text was updated successfully, but these errors were encountered:
Revert length of 'mosaic_name' in make_solo_mosaic.c
efaf658
to be STRING characters long. Fixes ufs-community#823
Tagging @MichaelLueken
Sorry, something went wrong.
4d2768c
GeorgeGayno-NOAA
Successfully merging a pull request may close this issue.
A recent change (#752) to
./sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c
at line 84 is causing a problem for some users:to:
Changing it back to STRING or to '256' fixes the problem.
The text was updated successfully, but these errors were encountered: