Skip to content
Snippets Groups Projects
Commit 05857aac authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

cast return value of taxisInqVdate() to int.

parent 31d8fbe6
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ cksum_stream(const char *fname, size_t *table_len)
while (streamInqTimestep(streamID, tsID))
{
// Get the verification date and time
int vdatetime[2] = { taxisInqVtime(taxisID), taxisInqVdate(taxisID) };
int vdatetime[2] = { taxisInqVtime(taxisID), (int) taxisInqVdate(taxisID) };
// Read var1 and var2
for (int varIdx = 0; varIdx < nvars; ++varIdx)
{
......
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