Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit a36d7e6

Browse files
committed
treematch: __FUNCTION__ -> __func__ fixes
1 parent a0ebbee commit a36d7e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ompi/mca/topo/treematch/treematch/tm_bucket.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ void partial_update_val (int nb_args, void **args){
514514

515515
if(nb_args != 6){
516516
if(verbose_level >= ERROR)
517-
fprintf(stderr,"Wrong number of args in %s: %d\n",__FUNCTION__, nb_args);
517+
fprintf(stderr,"Wrong number of args in %s: %d\n",__func__, nb_args);
518518
exit(-1);
519519
}
520520

ompi/mca/topo/treematch/treematch/tm_tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ void partial_aggregate_aff_mat (int nb_args, void **args){
239239

240240
if(nb_args != 6){
241241
if(verbose_level >= ERROR)
242-
fprintf(stderr,"Wrong number of args in %s: %d\n",__FUNCTION__, nb_args);
242+
fprintf(stderr,"Wrong number of args in %s: %d\n",__func__, nb_args);
243243
exit(-1);
244244
}
245245

0 commit comments

Comments
 (0)