From f11fc2990b13af1f9bd34e4d42a4dccc0d5eaa17 Mon Sep 17 00:00:00 2001 From: Lars Hanisch Date: Sun, 21 Mar 2010 20:39:02 +0100 Subject: minor code style cleanup --- device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/device.c b/device.c index 34a77db..395efc8 100644 --- a/device.c +++ b/device.c @@ -859,9 +859,9 @@ bool cPvrDevice::ParseChannel(const cChannel *Channel, int *input, uint64_t *nor *tpid = Channel->Tpid(); if (!strcasecmp (Input, "RADIO")) *inputType = eRadio; else if (!strcasecmp (Input, "TV")) *inputType = eTelevision; - else if (!strncasecmp(Input, "COMPOSITE",9)) *inputType = eExternalInput; - else if (!strncasecmp(Input, "SVIDEO",6)) *inputType = eExternalInput; - else if (!strncasecmp(Input, "COMPONENT",9)) *inputType = eExternalInput; + else if (!strncasecmp(Input, "COMPOSITE", 9)) *inputType = eExternalInput; + else if (!strncasecmp(Input, "SVIDEO", 6)) *inputType = eExternalInput; + else if (!strncasecmp(Input, "COMPONENT", 9)) *inputType = eExternalInput; else return false; if (!strcasecmp (Input, "TV")) *input = inputs[eTelevision]; else if (!strcasecmp (Input, "RADIO")) *input = inputs[eRadio]; -- cgit v1.2.3