Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed two mistakes detected by clang
  • Loading branch information
perexg committed Mar 8, 2016
1 parent ddb31c5 commit c6fa901
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/channels.c
Expand Up @@ -381,8 +381,7 @@ const idclass_t channel_class = {
"Always use the name defined by the network."),
.off = offsetof(channel_t, ch_autoname),
.set = channel_class_autoname_set,
.opts = PO_ADVANCED,
.opts = PO_NOSAVE,
.opts = PO_ADVANCED | PO_NOSAVE,
},
{
.type = PT_STR,
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/satip/satip.c
Expand Up @@ -393,7 +393,7 @@ const idclass_t satip_device_class =
.type = PT_STR,
.id = "manufacturer",
.name = N_("Manufacturer"),
.name = N_("The manufacturer of the SAT>IP server."),
.desc = N_("The manufacturer of the SAT>IP server."),
.opts = PO_RDONLY | PO_NOSAVE,
.off = offsetof(satip_device_t, sd_info.manufacturer),
},
Expand Down

0 comments on commit c6fa901

Please sign in to comment.