Skip to content

Commit

Permalink
Fix compiler warning in fre-nctools.fd (#969)
Browse files Browse the repository at this point in the history
Fixes #959.
  • Loading branch information
GeorgeGayno-NOAA authored Jul 16, 2024
1 parent de2608b commit 47705d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion reg_tests/grid_gen/driver.orion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ rm -fr $WORK_DIR
#-----------------------------------------------------------------------------

LOG_FILE1=${LOG_FILE}01
TEST1=$(sbatch --parsable --ntasks-per-node=24 --nodes=1 -t 0:15:00 -A $PROJECT_CODE -q $QUEUE -J c96.uniform \
TEST1=$(sbatch --parsable --ntasks-per-node=24 --nodes=1 -t 0:20:00 -A $PROJECT_CODE -q $QUEUE -J c96.uniform \
-o $LOG_FILE1 -e $LOG_FILE1 ./c96.uniform.sh)

#-----------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions sorc/fre-nctools.fd/shared_lib/mosaic_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ void initNode(struct Node *node);
void addEnd(struct Node *list, double x, double y, double z, int intersect, double u, int inbound, int inside);
int addIntersect(struct Node *list, double x, double y, double z, int intersect, double u1, double u2,
int inbound, int is1, int ie1, int is2, int ie2);
void insertIntersect(struct Node *list, double x, double y, double z, double u1, double u2, int inbound,
double x2, double y2, double z2);
int length(struct Node *list);
int samePoint(double x1, double y1, double z1, double x2, double y2, double z2);
int sameNode(struct Node node1, struct Node node2);
Expand Down

0 comments on commit 47705d5

Please sign in to comment.