Skip to content

Commit

Permalink
Fix: Change public SendArg decl match private (#2556)
Browse files Browse the repository at this point in the history
As per #2404, changed the
public include to match the private one.  MDSplus source code still
compiles without warnings.
  • Loading branch information
joshStillerman authored Apr 6, 2023
1 parent 4b9f6f1 commit 84d8084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ipdesc.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ extern "C"
#define INVALID_CONNECTION_ID -1
extern int ConnectToMds(char *host);
extern int SendArg(int s, unsigned char i, char dtype, unsigned char nargs,
short len, char ndims, int *dims, char *ptr);
unsigned short len, char ndims, int *dims, char *ptr);
extern int GetAnswerInfo(int s, char *dtype, short *len, char *ndims, int *dims,
int *nbytes, void **dptr);
extern int DisconnectFromMds(int conid);
Expand Down

0 comments on commit 84d8084

Please sign in to comment.