summaryrefslogtreecommitdiff
path: root/src/JPEGOutputImage.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-08-02 18:24:56 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-08-02 18:24:56 +0200
commit61903e6014daa0e381ffee5ae5c4599fb303eb01 (patch)
treee06b161a305b9e6e9da51fb21244189277d474ea /src/JPEGOutputImage.cxx
parent699556f7efcf6a9af39c37bd0c881ee3edc21da3 (diff)
make things compile again
Diffstat (limited to 'src/JPEGOutputImage.cxx')
-rw-r--r--src/JPEGOutputImage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JPEGOutputImage.cxx b/src/JPEGOutputImage.cxx
index 09fd4c6..d801166 100644
--- a/src/JPEGOutputImage.cxx
+++ b/src/JPEGOutputImage.cxx
@@ -93,7 +93,7 @@ JPEGOutputImage::next_line_internal() {
JSAMPROW row_pointer[1];
row_pointer[0] = row;
- jpeg_write_scanlines(&cinfo, &row_pointer, 1);
+ jpeg_write_scanlines(&cinfo, row_pointer, 1);
memset(row, 0, sizeof(char) * 3 * W);
return 0;
}