Ticket #5521: programs_mythfrontend-missing-typedef-name.patch

File programs_mythfrontend-missing-typedef-name.patch, 1.1 KB (added by Erik Hovland <erik@…>, 17 years ago)

adds names to typedefs

  • mythtv/programs/mythfrontend/channelrecpriority.cpp

    Each fix puts a name with a typedef declaration.
    
    From: Erik Hovland <erik@hovland.org>
    
    
    ---
    
     .../programs/mythfrontend/channelrecpriority.cpp   |    2 +-
     .../programs/mythfrontend/programrecpriority.cpp   |    2 +-
     2 files changed, 2 insertions(+), 2 deletions(-)
    
    diff --git a/mythtv/programs/mythfrontend/channelrecpriority.cpp b/mythtv/programs/mythfrontend/channelrecpriority.cpp
    index 06892f9..77f8943 100644
    a b typedef struct RecPriorityInfo 
    479479{
    480480    ChannelInfo *chan;
    481481    int cnt;
    482 };
     482} RecPriorityInfo;
    483483
    484484class channelSort
    485485{
  • mythtv/programs/mythfrontend/programrecpriority.cpp

    diff --git a/mythtv/programs/mythfrontend/programrecpriority.cpp b/mythtv/programs/mythfrontend/programrecpriority.cpp
    index e388482..fb9a476 100644
    a b typedef struct RecPriorityInfo 
    956956{
    957957    ProgramRecPriorityInfo *prog;
    958958    int cnt;
    959 };
     959} RecPriorityInfo;
    960960
    961961class titleSort
    962962{