Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
c43ba733
Commit
c43ba733
authored
Sep 26, 2004
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Plain Diff
Merge
ssh://linux-ntfs@bkbits.net/ntfs-2.6-devel
into cantab.net:/home/src/ntfs-2.6-devel
parents
038f9a8f
a32c00ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/ntfs/layout.h
fs/ntfs/layout.h
+2
-2
No files found.
fs/ntfs/layout.h
View file @
c43ba733
...
...
@@ -143,13 +143,13 @@ typedef le32 NTFS_RECORD_TYPE;
static
inline
BOOL
__ntfs_is_magic
(
le32
x
,
NTFS_RECORD_TYPE
r
)
{
return
(
x
==
(
__force
le32
)
r
);
return
(
x
==
r
);
}
#define ntfs_is_magic(x, m) __ntfs_is_magic(x, magic_##m)
static
inline
BOOL
__ntfs_is_magicp
(
le32
*
p
,
NTFS_RECORD_TYPE
r
)
{
return
(
*
p
==
(
__force
le32
)
r
);
return
(
*
p
==
r
);
}
#define ntfs_is_magicp(p, m) __ntfs_is_magicp(p, magic_##m)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment