dvbsrc: use proper acronym for PID (Packet Identifier)
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Mon, 6 Jun 2016 22:31:31 +0000 (15:31 -0700)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 9 Jun 2016 21:45:59 +0000 (14:45 -0700)
Drop formatting tab from message while at it.

sys/dvb/gstdvbsrc.c

index f5a6875..76e9ebf 100644 (file)
@@ -1117,7 +1117,7 @@ gst_dvbsrc_set_pids (GstDvbSrc * dvbsrc, const gchar * pid_string)
     while (*pids != NULL && pid_count < MAX_FILTERS) {
       pid = strtol (*pids, NULL, 0);
       if (pid > 1 && pid <= 8192) {
-        GST_INFO_OBJECT (dvbsrc, "\tParsed Pid: %d", pid);
+        GST_INFO_OBJECT (dvbsrc, "Parsed PID: %d", pid);
         dvbsrc->pids[pid_count] = pid;
         pid_count++;
       }