Skip to content
GitLab
Menu
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
451e8375
Commit
451e8375
authored
Oct 28, 2015
by
Thomas Jahns
🤸
Browse files
Merge declaration and initialization.
parent
d215ed80
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/taxis.c
View file @
451e8375
...
@@ -1453,13 +1453,10 @@ taxisPrintKernel(taxis_t * taxisptr, FILE * fp)
...
@@ -1453,13 +1453,10 @@ taxisPrintKernel(taxis_t * taxisptr, FILE * fp)
static
int
static
int
taxisCompareP
(
void
*
taxisptr1
,
void
*
taxisptr2
)
taxisCompareP
(
void
*
taxisptr1
,
void
*
taxisptr2
)
{
{
taxis_t
*
t1
,
*
t2
;
const
taxis_t
*
t1
=
(
const
taxis_t
*
)
taxisptr1
,
*
t2
=
(
const
taxis_t
*
)
taxisptr2
;
t1
=
(
taxis_t
*
)
taxisptr1
;
xassert
(
t1
&&
t2
);
t2
=
(
taxis_t
*
)
taxisptr2
;
xassert
(
t1
);
xassert
(
t2
);
return
!
(
t1
->
used
==
t2
->
used
&&
return
!
(
t1
->
used
==
t2
->
used
&&
t1
->
type
==
t2
->
type
&&
t1
->
type
==
t2
->
type
&&
...
...
Write
Preview
Supports
Markdown
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