fix build failure when long opts are enabled
This commit is contained in:
parent
6b160e490d
commit
ea915363e7
@ -122,17 +122,16 @@ int rtcwake_main(int argc, char **argv)
|
|||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
#if ENABLE_GETOPT_LONG
|
#if ENABLE_GETOPT_LONG
|
||||||
static const char rtcwake_longopts[] ALIGN1 =
|
static const char rtcwake_longopts[] ALIGN1 =
|
||||||
"auto\0" No_argument "a"
|
"auto\0" No_argument "a"
|
||||||
"local\0" No_argument "l"
|
"local\0" No_argument "l"
|
||||||
"utc\0" No_argument "u"
|
"utc\0" No_argument "u"
|
||||||
"device\0" Required_argument "d"
|
"device\0" Required_argument "d"
|
||||||
"mode\0" Required_argument "m"
|
"mode\0" Required_argument "m"
|
||||||
"seconds\0" Required_argument "s"
|
"seconds\0" Required_argument "s"
|
||||||
"time\0" Required_argument "t"
|
"time\0" Required_argument "t"
|
||||||
;
|
;
|
||||||
applet_long_options = rtcwake_longopts;
|
applet_long_options = rtcwake_longopts;
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
opt = getopt32(argv, "alud:m:s:t:", &rtcname, &suspend, &opt_seconds, &opt_time);
|
opt = getopt32(argv, "alud:m:s:t:", &rtcname, &suspend, &opt_seconds, &opt_time);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user