forked from pool/tvheadend
e81d11a8c1
- 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
22 lines
692 B
Diff
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:
|