Merge pull request #287 from hpc/fix-warning

Fix compiler issue with redefinition via typedef.
master
Julian Kunkel 2020-12-01 17:44:14 +00:00 committed by GitHub
commit 691324f17b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -76,9 +76,9 @@ typedef struct aiori_xfer_hint_t{
} aiori_xfer_hint_t;
/* this is a dummy structure to create some type safety */
typedef struct aiori_mod_opt_t{
struct aiori_mod_opt_t{
void * dummy;
} aiori_mod_opt_t;
};
typedef struct aiori_fd_t{
void * dummy;