diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-08-02 18:24:56 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-08-02 18:24:56 +0200 |
commit | 61903e6014daa0e381ffee5ae5c4599fb303eb01 (patch) | |
tree | e06b161a305b9e6e9da51fb21244189277d474ea | |
parent | 699556f7efcf6a9af39c37bd0c881ee3edc21da3 (diff) |
make things compile again
-rw-r--r-- | src/JPEGOutputImage.cxx | 2 |
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; } |