mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-23 19:59:41 +00:00
- small size tweak
This commit is contained in:
parent
1118a1de46
commit
d19f4aaa21
@ -29,10 +29,8 @@
|
||||
int touch_main(int argc, char **argv)
|
||||
{
|
||||
int fd;
|
||||
int flags;
|
||||
int status = EXIT_SUCCESS;
|
||||
|
||||
flags = getopt32(argc, argv, "c");
|
||||
bool flags = (getopt32(argc, argv, "c") & 1);
|
||||
|
||||
argv += optind;
|
||||
|
||||
@ -43,7 +41,7 @@ int touch_main(int argc, char **argv)
|
||||
do {
|
||||
if (utime(*argv, NULL)) {
|
||||
if (errno == ENOENT) { /* no such file*/
|
||||
if (flags & 1) { /* Creation is disabled, so ignore. */
|
||||
if (flags) { /* Creation is disabled, so ignore. */
|
||||
continue;
|
||||
}
|
||||
/* Try to create the file. */
|
||||
|
Loading…
Reference in New Issue
Block a user