Fix build warning from clang

This commit is contained in:
Andrew Johnson
2016-08-29 10:41:51 -05:00
parent 7edc0c67ca
commit 33e565b67d

View File

@@ -32,7 +32,13 @@ typedef enum {
struct link;
struct lset;
typedef struct jlink jlink;
struct jlif;
typedef struct jlink {
struct jlif *pif;
struct jlink *parent;
/* Link types extend or embed this structure for private storage */
} jlink;
typedef struct jlif {
const char *name;
@@ -54,12 +60,6 @@ typedef struct jlif {
void (*report)(const jlink *);
} jlif;
typedef struct jlink {
jlif *pif;
jlink *parent;
/* Link types extend or embed this structure for private storage */
} jlink;
epicsShareFunc long dbJLinkInit(struct link *plink, short dbfType);
#ifdef __cplusplus