Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
4a4b049a
Commit
4a4b049a
authored
May 12, 2011
by
Uwe Schulzweida
Browse files
grid::compareXYvals: bug fix for generic grids
parent
43ef96ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
4a4b049a
2011-05-12 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* grid::compareXYvals: bug fix for generic grids [report: Felicia Brisc]
2011-04-28 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* Added attribute standard_name to netCDF time var [request: Karin Meier-Fleischer]
...
...
src/grid.c
View file @
4a4b049a
...
...
@@ -2247,7 +2247,7 @@ void compareXYvals(int gridID, long xsize, long ysize, double *xvals0, double *y
{
long
i
;
if
(
gridInqXvals
(
gridID
,
NULL
)
)
if
(
xsize
==
gridInqXvals
(
gridID
,
NULL
)
)
{
double
*
xvals
;
...
...
@@ -2265,7 +2265,7 @@ void compareXYvals(int gridID, long xsize, long ysize, double *xvals0, double *y
free
(
xvals
);
}
if
(
gridInqYvals
(
gridID
,
NULL
)
)
if
(
ysize
==
gridInqYvals
(
gridID
,
NULL
)
)
{
double
*
yvals
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment