diff options
| author | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-06 11:48:14 +0100 | 
|---|---|---|
| committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-01-06 11:48:14 +0100 | 
| commit | fe2568082a3a6df7d6b9fa88d83942fbd701c9b4 (patch) | |
| tree | 9d2ee199fd96bc51fc0cc1a8c679b856a6c56638 | |
| parent | 49f7a7f57470e5b941073a0cccf50425279600d1 (diff) | |
| download | vdr-fe2568082a3a6df7d6b9fa88d83942fbd701c9b4.tar.gz vdr-fe2568082a3a6df7d6b9fa88d83942fbd701c9b4.tar.bz2 | |
Added a missing newline
| -rw-r--r-- | vdr.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -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; | 
