summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2015-01-05 17:51:28 -0500
committerHubert Figuière <hub@figuiere.net>2016-04-25 23:24:44 -0400
commitdecd22435c951e9587c1bf64b132e9b2f467122f (patch)
treefe1ab4fb100af4bae6cb4563d9b421876820b737 /tools
parent484eb56d0309dae193b3adbcb88431ba333be0e8 (diff)
A more versatile API for coefficients.
Diffstat (limited to 'tools')
-rw-r--r--tools/ordiag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ordiag.cpp b/tools/ordiag.cpp
index 1762cfd..da46f2c 100644
--- a/tools/ordiag.cpp
+++ b/tools/ordiag.cpp
@@ -325,7 +325,7 @@ public:
"\t\tValues: black = %1% white = %2%\n") % black % white;
uint32_t matrix_size = 0;
- const double *matrix = or_rawdata_get_colourmatrix1(rd, &matrix_size);
+ const double *matrix = or_rawdata_get_colour_matrix(rd, 1, &matrix_size);
if (matrix) {
m_out << boost::format("\t\tColour Matrix 1: ");
for (uint32_t i = 0; i < matrix_size; i++) {