Skip to content

Commit

Permalink
Update some file comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaerr committed Nov 16, 2024
1 parent 291870b commit 2e6506e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elks/include/linuxmt/minix_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct minix_inode_info {
};

/* This is the original minix inode layout on disk.
* Note the 8-bit gid and atime and ctime.
* Note the 8-bit gid and missing atime and ctime.
*/
struct minix_inode {
__u16 i_mode;
Expand Down
2 changes: 1 addition & 1 deletion elks/init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ static int INITPROC parse_options(void)
fmemcpyb(opts.options, kernel_ds, 0, DEF_OPTSEG, sizeof(opts.options));

#pragma GCC diagnostic ignored "-Wstrict-aliasing"
/* check file starts with ##, one or two sectors, max 1023 bytes */
/* check file starts with ##, one or two sectors, max 1023 bytes or 511 one sector */
if (*(unsigned short *)opts.options != 0x2323 ||
(opts.options[511] && opts.options[OPTSEGSZ-1]))
return 0;
Expand Down

0 comments on commit 2e6506e

Please sign in to comment.