input: minor correction, redefined struct typedef, breaks on Lucid

This commit is contained in:
Adam Sutton 2013-11-16 10:46:42 +00:00
parent 288adcc3bd
commit d5451be03a

View file

@ -62,22 +62,21 @@ struct tvh_input_stream {
/*
* Generic input super-class
*/
typedef struct tvh_input {
struct tvh_input {
idnode_t ti_id;
LIST_ENTRY(tvh_input) ti_link;
void (*ti_get_streams) (struct tvh_input *, tvh_input_stream_list_t*);
} tvh_input_t;
};
/*
* Generic hardware super-class
*/
typedef struct tvh_hardware {
struct tvh_hardware {
idnode_t th_id;
LIST_ENTRY(tvh_hardware) th_link;
} tvh_input_hw_t;
};
/*