mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing newline
This commit is contained in:
parent
49f7a7f574
commit
fe2568082a
5
vdr.c
5
vdr.c
@ -22,7 +22,7 @@
|
||||
*
|
||||
* The project's page is at http://www.cadsoft.de/vdr
|
||||
*
|
||||
* $Id: vdr.c 1.303 2007/11/25 15:11:33 kls Exp $
|
||||
* $Id: vdr.c 1.304 2008/01/06 11:48:14 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
@ -345,7 +345,8 @@ int main(int argc, char *argv[])
|
||||
while (optarg && *optarg && optarg[strlen(optarg) - 1] == '/')
|
||||
optarg[strlen(optarg) - 1] = 0;
|
||||
break;
|
||||
case 'w': if (isnumber(optarg)) { int t = atoi(optarg);
|
||||
case 'w': if (isnumber(optarg)) {
|
||||
int t = atoi(optarg);
|
||||
if (t >= 0) {
|
||||
WatchdogTimeout = t;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user