SHA256
1
0
forked from pool/tvheadend
tvheadend/tvheadend-fix-misleading-indent.patch
Denisart Benjamin e81d11a8c1 Accepting request 460709 from home:sleep_walker:branches:multimedia:apps
- replace original (but long-time broken) package with the working one
  living in PackMan build service (and adopt their changelog)
- keep tvheadend-fix-daemon-user-group.patch
- remove pre-systemd stuff and init scripts
- move "homedir" of the user to /var/lib/tvheadend


process spec file with spec-cleaner

OBS-URL: https://build.opensuse.org/request/show/460709
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/tvheadend?expand=0&rev=5
2017-02-27 14:12:27 +00:00

22 lines
692 B
Diff

diff -Naur a/src/htsmsg.c b/src/htsmsg.c
--- a/src/htsmsg.c 2016-03-14 04:10:57.000000000 -0500
+++ b/src/htsmsg.c 2016-09-26 16:51:51.367645274 -0500
@@ -760,13 +760,15 @@
case HMF_MAP:
printf("MAP) = {\n");
htsmsg_print0(&f->hmf_msg, indent + 1);
- for(i = 0; i < indent; i++) printf("\t"); printf("}\n");
+ for(i = 0; i < indent; i++) printf("\t");
+ printf("}\n");
break;
case HMF_LIST:
printf("LIST) = {\n");
htsmsg_print0(&f->hmf_msg, indent + 1);
- for(i = 0; i < indent; i++) printf("\t"); printf("}\n");
+ for(i = 0; i < indent; i++) printf("\t");
+ printf("}\n");
break;
case HMF_STR: