mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed formatting and removed some superfluous break statements in vdr.c's command line option switch
This commit is contained in:
parent
c9e5b13789
commit
9d2367d967
2
HISTORY
2
HISTORY
@ -7582,3 +7582,5 @@ Video Disk Recorder Revision History
|
||||
create. However, a particular device may still be unable to create an arbitrary
|
||||
number of pixmaps, due to limited resources. So it's always a good idea to use
|
||||
as few pixmaps as possible.
|
||||
- Fixed formatting and removed some superfluous break statements in vdr.c's command
|
||||
line option switch.
|
||||
|
8
vdr.c
8
vdr.c
@ -22,7 +22,7 @@
|
||||
*
|
||||
* The project's page is at http://www.tvdr.de
|
||||
*
|
||||
* $Id: vdr.c 2.47 2013/02/07 13:53:01 kls Exp $
|
||||
* $Id: vdr.c 2.48 2013/02/08 10:47:02 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
@ -267,7 +267,8 @@ int main(int argc, char *argv[])
|
||||
break;
|
||||
case 'c': ConfigDirectory = optarg;
|
||||
break;
|
||||
case 'd': DaemonMode = true; break;
|
||||
case 'd': DaemonMode = true;
|
||||
break;
|
||||
case 'D': if (isnumber(optarg)) {
|
||||
int n = atoi(optarg);
|
||||
if (0 <= n && n < MAXDEVICES) {
|
||||
@ -277,7 +278,6 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
fprintf(stderr, "vdr: invalid DVB device number: %s\n", optarg);
|
||||
return 2;
|
||||
break;
|
||||
case 'd' | 0x100: {
|
||||
char *s = optarg;
|
||||
int n = strtol(s, &s, 10);
|
||||
@ -365,7 +365,6 @@ int main(int argc, char *argv[])
|
||||
fprintf(stderr, "vdr: invalid log level: %s\n", optarg);
|
||||
return 2;
|
||||
}
|
||||
break;
|
||||
case 'L': if (access(optarg, R_OK | X_OK) == 0)
|
||||
PluginManager.SetDirectory(optarg);
|
||||
else {
|
||||
@ -440,7 +439,6 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
fprintf(stderr, "vdr: invalid watchdog timeout: %s\n", optarg);
|
||||
return 2;
|
||||
break;
|
||||
default: return 2;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user