Skip to content

Commit

Permalink
hds: datPrmry first argument is a boolean too
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Oct 31, 2014
1 parent 882dfcc commit a18d136
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libraries/hds-v4/hds.h
Expand Up @@ -623,7 +623,7 @@ datPrim(const HDSLoc *locator, hdsbool_t *prim, int *status);
/*=========================================================*/

int
datPrmry(int set, HDSLoc **locator, hdsbool_t *prmry, int *status);
datPrmry(hdsbool_t set, HDSLoc **locator, hdsbool_t *prmry, int *status);

/*==================================*/
/* datPutC - Write _CHAR primitive */
Expand Down
2 changes: 1 addition & 1 deletion libraries/hds-v4/hds_v4.h
Expand Up @@ -620,7 +620,7 @@ datPrim_v4(const HDSLoc *locator, hdsbool_t *prim, int *status);
/*=========================================================*/

int
datPrmry_v4(int set, HDSLoc **locator, hdsbool_t *prmry, int *status);
datPrmry_v4(hdsbool_t set, HDSLoc **locator, hdsbool_t *prmry, int *status);

/*==================================*/
/* datPutC - Write _CHAR primitive */
Expand Down
2 changes: 1 addition & 1 deletion libraries/hds/hds.h
Expand Up @@ -620,7 +620,7 @@ datPrim(const HDSLoc *locator, hdsbool_t *prim, int *status);
/*=========================================================*/

int
datPrmry(int set, HDSLoc **locator, hdsbool_t *prmry, int *status);
datPrmry(hdsbool_t set, HDSLoc **locator, hdsbool_t *prmry, int *status);

/*==================================*/
/* datPutC - Write _CHAR primitive */
Expand Down
2 changes: 1 addition & 1 deletion libraries/hds/hds_select.c
Expand Up @@ -1747,7 +1747,7 @@ datPrim(const HDSLoc *locator, hdsbool_t *prim, int *status) {
/*=========================================================*/

int
datPrmry(int set, HDSLoc **locator, hdsbool_t *prmry, int *status) {
datPrmry(hdsbool_t set, HDSLoc **locator, hdsbool_t *prmry, int *status) {

int retval = 0;
int instat = *status;
Expand Down

0 comments on commit a18d136

Please sign in to comment.