Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
cd93e7d4
Commit
cd93e7d4
authored
Oct 02, 2015
by
Thomas Jahns
🤸
Browse files
Fix for warning about sign bit.
parent
2c4f5a00
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/namespace.c
View file @
cd93e7d4
...
...
@@ -109,7 +109,7 @@ enum {
intbits
=
sizeof
(
int
)
*
CHAR_BIT
,
nspbits
=
4
,
idxbits
=
intbits
-
nspbits
,
nspmask
=
(
(
1
<<
nspbits
)
-
1
)
<<
idxbits
,
nspmask
=
(
int
)(((
(
unsigned
)
1
<<
nspbits
)
-
1
)
<<
idxbits
)
,
idxmask
=
(
1
<<
idxbits
)
-
1
,
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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