diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-09-29 00:24:14 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-09-29 00:24:14 +0300 |
commit | 64f7d4a3cd0f5a70da395ce0e79b44df52e86749 (patch) | |
tree | fadadcf775d6336f9c6104ab6766cf2e676ec56a /config.c | |
parent | 792857f38c02ad2f8c7be52803f00f03304d564e (diff) | |
download | vdr-plugin-epgfixer-64f7d4a3cd0f5a70da395ce0e79b44df52e86749.tar.gz vdr-plugin-epgfixer-64f7d4a3cd0f5a70da395ce0e79b44df52e86749.tar.bz2 |
Remove duplicate code. Harmonise code formatting.
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,8 +45,8 @@ bool cEpgfixerSetup::ProcessArgs(int argc, char *argv[]) bool cEpgfixerSetup::SetupParse(const char *Name, const char *Value) { const char *pt; - if (*m_ProcessedArgs && NULL != (pt=strstr(m_ProcessedArgs+1, Name)) && - *(pt-1) == ' ' && *(pt+strlen(Name)) == ' ') { + if (*m_ProcessedArgs && NULL != (pt = strstr(m_ProcessedArgs + 1, Name)) && + *(pt - 1) == ' ' && *(pt + strlen(Name)) == ' ') { dsyslog("Skipping configuration entry %s=%s (overridden in command line)", Name, Value); return true; } |