Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AlysonStahl-NOAA committed Oct 9, 2024
1 parent c9db44d commit b5765d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/developer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
jasper-version: version-4.0.0
ip-version: develop
g2c-version: develop
g2c-cmake-args: -DUSE_JASPER=ON
g2c-cmake-args: -DUSE_JASPER=ON -DBUILD_G2C=ON

- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion wgrib2/GDT.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#ifdef USE_G2CLIB

#include <grib2.h>
#include "grib2.h"
g2int g2_unpack3(unsigned char *,g2int *,g2int **,g2int **,
g2int *,g2int **,g2int *);

Expand Down
2 changes: 1 addition & 1 deletion wgrib2/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "fnlist.h"

#ifdef USE_G2CLIB
#include <grib2.h>
#include "grib2.h"
extern gribfield *grib_data; extern int free_gribfield; // flag for allocated gribfield
#endif

Expand Down
2 changes: 1 addition & 1 deletion wgrib2/wgrib2.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jmp_buf fatal_err;
#include "fnlist.h"

#ifdef USE_G2CLIB
#include <grib2.h>
#include "grib2.h"
gribfield *grib_data;
int free_gribfield; // flag for allocated gribfield
#endif
Expand Down

0 comments on commit b5765d2

Please sign in to comment.