Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed compiler warning
  • Loading branch information
karlnapf committed Jul 8, 2012
1 parent 28c06ce commit e1db78e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/shogun/statistics/IndependenceTestStatistic.cpp
Expand Up @@ -72,8 +72,8 @@ float64_t CIndependenceTestStatistic::compute_p_value(float64_t statistic)
}
else
{
SG_ERROR("%s::compute_p_value(): Unknown method to approximate null-"
"distirbution!\n", get_name());
SG_ERROR("%CIndependenceTestStatistic::compute_p_value(): Unknown "
"method to approximate null-distirbution!\n");
}

return result;
Expand Down
4 changes: 2 additions & 2 deletions src/shogun/statistics/TwoSampleTestStatistic.cpp
Expand Up @@ -103,8 +103,8 @@ float64_t CTwoSampleTestStatistic::compute_p_value(float64_t statistic)
}
else
{
SG_ERROR("%s::compute_p_value(): Unknown method to approximate null-"
"distribution!\n", get_name());
SG_ERROR("CTwoSampleTestStatistics::compute_p_value(): Unknown method "
"to approximate null-distribution!\n");
}

return result;
Expand Down

0 comments on commit e1db78e

Please sign in to comment.