]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
input: minor correction, redefined struct typedef, breaks on Lucid
authorAdam Sutton <dev@adamsutton.me.uk>
Sat, 16 Nov 2013 10:46:42 +0000 (10:46 +0000)
committerAdam Sutton <dev@adamsutton.me.uk>
Sat, 16 Nov 2013 10:46:42 +0000 (10:46 +0000)
src/input.h

index a74a8bf235fb5c5c3dcb99e478d4e75f43bfc3d4..ce98eca2075d5ee632aea0f3d22d21f4ce02428c 100644 (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;
+};
 
 
 /*