summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/j2k_transcode.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/j2k_transcode.cc b/benchmark/j2k_transcode.cc
index 7bdf357d..cd1bd52a 100644
--- a/benchmark/j2k_transcode.cc
+++ b/benchmark/j2k_transcode.cc
@@ -110,6 +110,6 @@ main (int argc, char* argv[])
cout << "Compress: " << count / compress.get() << " fps.\n";
FILE* f = fopen ("check.j2c", "wb");
- fwrite (recomp.data().get(), 1, recomp.size(), f);
+ fwrite (recomp.data(), 1, recomp.size(), f);
fclose (f);
}