Skip to content

Commit

Permalink
Fix types on XDR::xdr_ops function struct (#4408)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmacdope authored Jan 3, 2024
1 parent b9f321c commit 734314b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/MDAnalysis/lib/formats/src/xdrfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ struct XDR
int (*x_getbytes) (XDR *__xdrs, char *__addr, unsigned int __len);
int (*x_putbytes) (XDR *__xdrs, char *__addr, unsigned int __len);
/* two next routines are not 64-bit IO safe - don't use! */
unsigned int (*x_getpostn) (XDR *__xdrs);
int (*x_setpostn) (XDR *__xdrs, unsigned int __pos);
int64_t (*x_getpostn) (XDR *__xdrs);
int (*x_setpostn) (XDR *__xdrs, int64_t __pos, int __whence);
void (*x_destroy) (XDR *__xdrs);
}
*x_ops;
Expand Down

0 comments on commit 734314b

Please sign in to comment.