Skip to content

Commit

Permalink
Testing fix suggested by @wkliao in Unidata#2319
Browse files Browse the repository at this point in the history
  • Loading branch information
WardF committed Jun 6, 2022
1 parent bef049d commit e337276
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libdispatch/dutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ NC_readfileF(FILE* stream, NCbytes* content, long long amount)
{
int ret = NC_NOERR;
long long red = 0;
char part[1024];
char part[4194304];

while(amount < 0 || red < amount) {
size_t count = fread(part, 1, sizeof(part), stream);
Expand Down Expand Up @@ -394,8 +394,8 @@ NC_testmode(NCURI* uri, const char* tag)
return found;
}

#if ! defined __INTEL_COMPILER
#if defined __APPLE__
#if ! defined __INTEL_COMPILER
#if defined __APPLE__
/** \internal */

int isinf(double x)
Expand Down

0 comments on commit e337276

Please sign in to comment.