diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-04-18 16:19:28 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-04-18 16:19:28 +0200 |
commit | c17328da8764e21af0e466701d5622345f7c38c0 (patch) | |
tree | 9b7046142a22949cd358778cad5829ace251bdea /dvbdevice.c | |
parent | 165aa63d2e0463c5a186b8f6a0e6af5a74707dbe (diff) | |
download | vdr-c17328da8764e21af0e466701d5622345f7c38c0.tar.gz vdr-c17328da8764e21af0e466701d5622345f7c38c0.tar.bz2 |
Fixed plural handling
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 0a57c67c..63af52e7 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 4.1 2015/04/18 14:21:58 kls Exp $ + * $Id: dvbdevice.c 4.2 2015/04/18 16:19:28 kls Exp $ */ #include "dvbdevice.h" @@ -1249,7 +1249,7 @@ bool cDvbDevice::Initialize(void) if (Found > 0) { isyslog("found %d DVB device%s", Found, Found > 1 ? "s" : ""); if (Used != Found) - isyslog("using only %d DVB device%s", Used, Used > 1 ? "s" : ""); + isyslog("using only %d DVB device%s", Used, Used != 1 ? "s" : ""); } else isyslog("no DVB device found"); |