Skip to content

Commit

Permalink
[Server] Correct type definition for checksum vector.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jun 3, 2020
1 parent 241cb8d commit 3015dfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/XrdSfs/XrdSfsAio.hh
Expand Up @@ -29,6 +29,7 @@
/* specific prior written permission of the institution or contributor. */
/******************************************************************************/

#include <cstdint>
#include <signal.h>
#include <sys/types.h>
// _POSIX_ASYNCHRONOUS_IO, if it is defined, is in unistd.h.
Expand Down Expand Up @@ -59,7 +60,7 @@ class XrdSfsAio
public:

struct aiocb sfsAio;
unsigned int *cksVec; // For pgRead and pgWrite
uint32_t *cksVec; // For pgRead and pgWrite

ssize_t Result; // If >= 0 valid result; else is -errno

Expand Down

0 comments on commit 3015dfb

Please sign in to comment.