From efaf658b598e75187985b50fae1317027fe31f1b Mon Sep 17 00:00:00 2001 From: George Gayno Date: Wed, 10 May 2023 18:19:25 +0000 Subject: [PATCH] Revert length of 'mosaic_name' in make_solo_mosaic.c to be STRING characters long. Fixes #823 --- sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c b/sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c index ce18a1841..7564e23ce 100644 --- a/sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c +++ b/sorc/fre-nctools.fd/tools/make_solo_mosaic/make_solo_mosaic.c @@ -81,7 +81,7 @@ int main (int argc, char *argv[]) int contact_tile1_jstart[MAXCONTACT], contact_tile1_jend[MAXCONTACT]; int contact_tile2_istart[MAXCONTACT], contact_tile2_iend[MAXCONTACT]; int contact_tile2_jstart[MAXCONTACT], contact_tile2_jend[MAXCONTACT]; - char mosaic_name[128] = "solo_mosaic"; + char mosaic_name[STRING] = "solo_mosaic"; char grid_descriptor[128] = ""; int c, i, n, m, l, errflg;