bc: convert to "G trick" - this returns bc to zero bss increase
[oweals/busybox.git] / util-linux / hwclock.c
index 50f83d8c484c7aceb33809732aa7785d5daf13a4..29f51021e813ece6c81205d5a357fa6678c190a1 100644 (file)
@@ -343,8 +343,11 @@ int hwclock_main(int argc UNUSED_PARAM, char **argv)
        /* Initialize "timezone" (libc global variable) */
        tzset();
 
-       opt_complementary = "r--wst:w--rst:s--wrt:t--rsw:l--u:u--l";
-       opt = getopt32long(argv, "lurswtf:", hwclock_longopts, &rtcname);
+       opt = getopt32long(argv,
+               "^lurswtf:" "\0" "r--wst:w--rst:s--wrt:t--rsw:l--u:u--l",
+               hwclock_longopts,
+               &rtcname
+       );
 
        /* If -u or -l wasn't given check if we are using utc */
        if (opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME))