diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-06-03 13:35:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-06-03 13:35:02 +0200 |
commit | b4b3c8a3ddcd6d7bce673394d97c316a92ea07a2 (patch) | |
tree | f5b1048b12a4ec2f2c7a68770094fde15e3d781f /device.c | |
parent | a096fcb88c404abaeefb174a79c0b569d61da799 (diff) | |
download | vdr-b4b3c8a3ddcd6d7bce673394d97c316a92ea07a2.tar.gz vdr-b4b3c8a3ddcd6d7bce673394d97c316a92ea07a2.tar.bz2 |
Fixed a wrong error message
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 2.36 2010/04/11 10:45:15 kls Exp $ + * $Id: device.c 2.37 2010/06/03 13:35:02 kls Exp $ */ #include "device.h" @@ -152,7 +152,7 @@ int cDevice::NextCardIndex(int n) esyslog("ERROR: nextCardIndex too big (%d)", nextCardIndex); } else if (n < 0) - esyslog("ERROR: invalid value in IncCardIndex(%d)", n); + esyslog("ERROR: invalid value in nextCardIndex(%d)", n); return nextCardIndex; } |