mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Userland: Fix two compiler warnings.
This commit is contained in:
@@ -10,7 +10,7 @@ int main(int argc, char **argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
mode_t mode;
|
unsigned mode;
|
||||||
int rc = sscanf(argv[1], "%o", &mode);
|
int rc = sscanf(argv[1], "%o", &mode);
|
||||||
if (rc != 1) {
|
if (rc != 1) {
|
||||||
perror("sscanf");
|
perror("sscanf");
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ int do_dir(const char* path)
|
|||||||
perror("opendir");
|
perror("opendir");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
char pathbuf[256];
|
char pathbuf[PATH_MAX];
|
||||||
|
|
||||||
while (auto* de = readdir(dirp)) {
|
while (auto* de = readdir(dirp)) {
|
||||||
if (de->d_name[0] == '.' && !flag_show_dotfiles)
|
if (de->d_name[0] == '.' && !flag_show_dotfiles)
|
||||||
|
|||||||
Reference in New Issue
Block a user