Skip to content
Snippets Groups Projects
Commit ec59d44f authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Use int for grid ID.

parent c1c2af26
No related branches found
No related tags found
2 merge requests!91Add alternative code path for huge buffers.,!89Miscellaneous fixes and CDI-PIO improvements
......@@ -337,7 +337,7 @@ transpose2dArrayDP(int gridId, double *data)
}
static void
transpose2dArraySP(size_t gridId, float *data)
transpose2dArraySP(int gridId, float *data)
{
size_t inWidth = (size_t)gridInqYsize(gridId);
size_t inHeight = (size_t)gridInqXsize(gridId);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment