diff --git a/.gitignore b/.gitignore index 729bd57a6..dedd7f754 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,8 @@ configure/*.local O.*/ *~ *.swp +/QtC-* +/.qtc_* .project .settings .cproject diff --git a/ADApp/pluginSrc/NDFileHDF5.cpp b/ADApp/pluginSrc/NDFileHDF5.cpp index 40ce63537..01d8fa427 100644 --- a/ADApp/pluginSrc/NDFileHDF5.cpp +++ b/ADApp/pluginSrc/NDFileHDF5.cpp @@ -3550,7 +3550,7 @@ char* NDFileHDF5::getDimsReport() struct dimsizes_t { const char* name; - unsigned long long* dimsize; + hsize_t* dimsize; int nd; } dimsizes[7] = { {"framesize", this->framesize, this->rank}, @@ -3569,7 +3569,7 @@ char* NDFileHDF5::getDimsReport() c = strlen(strdims); for(j=0; jpasynUserSelf, ASYN_TRACE_ERROR, - "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - driverName, functionName, threshold, align); + "%s%s Warning: failed to set boundary threshold=%llu and alignment=%llu bytes\n", + driverName, functionName, (unsigned long long) threshold, (unsigned long long) align); H5Pget_alignment( access_plist, &threshold, &align ); this->lock(); setIntegerParam(NDFileHDF5_chunkBoundaryAlign, (int)align);