Skip to content

Commit 385e825

Browse files
committed
Hotfix: Replace GNU _IO_FILE with FILE
Hotfix to replace the usage of _IO_FILE with FILE. This is what happens when one uses some GNU based documentation exampled to modify for the sake of time. _IO_FILE may not work with some compilers like XLC, no reason to not just use FILE - like it should have been before.
1 parent 8524b27 commit 385e825

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/networks/model-net/dragonfly-dally.C

+1-1
Original file line numberDiff line numberDiff line change
@@ -1304,7 +1304,7 @@ static terminal_dally_message_list* return_tail(
13041304
return tail;
13051305
}
13061306

1307-
void dragonfly_print_params(const dragonfly_param *p, _IO_FILE * st)
1307+
void dragonfly_print_params(const dragonfly_param *p, FILE * st)
13081308
{
13091309
if(!st)
13101310
st = stdout;

src/networks/model-net/dragonfly-plus.C

+1-1
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ static terminal_plus_message_list *return_tail(terminal_plus_message_list **this
14931493
return tail;
14941494
}
14951495

1496-
void dragonfly_plus_print_params(const dragonfly_plus_param *p, _IO_FILE * st)
1496+
void dragonfly_plus_print_params(const dragonfly_plus_param *p, FILE * st)
14971497
{
14981498
if (!st)
14991499
st = stdout;

0 commit comments

Comments
 (0)