Skip to content

Commit

Permalink
DAOS-14981 gurt: restore d_getenv_int undefined symbol
Browse files Browse the repository at this point in the history
Integrate reviewers comments:
- Use compiler intrinsic macro

Features: mpiio dfuse
Required-githooks: true
Signed-off-by: Cedric Koch-Hofer <[email protected]>
  • Loading branch information
kanard38 authored and Cedric Koch-Hofer committed Jan 17, 2024
1 parent 0703b18 commit e95531c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/include/gurt/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -586,9 +586,8 @@ int
d_getenv_bool(const char *name, bool *bool_val);
int
d_getenv_char(const char *name, char *char_val);
/* DAOS-14981 XXX d_getenv_int() is deprecated, please use d_getenv_uint() */
int
d_getenv_int(const char *name, unsigned int *uint_val);
d_getenv_int(const char *name, unsigned int *uint_val) __attribute__ ((deprecated ("use d_getenv_uint")));
int
d_getenv_uint(const char *name, unsigned int *uint_val);
int
Expand Down

0 comments on commit e95531c

Please sign in to comment.