From 8ce84e0454810bf2fde99fd07c9e7b8490a85b1c Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Wed, 23 Nov 2016 11:09:36 -0700 Subject: [PATCH] Fixed raw self assign --- openbr/plugins/format/raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbr/plugins/format/raw.cpp b/openbr/plugins/format/raw.cpp index d58c8c4..bf9c089 100644 --- a/openbr/plugins/format/raw.cpp +++ b/openbr/plugins/format/raw.cpp @@ -38,7 +38,7 @@ class rawFormat : public Format QtUtils::readFile(file, data); // The raw file format has no header information, so one must specify resolution - QSize size = size = QSize(file.get("width"),file.get("height")); + QSize size = QSize(file.get("width"),file.get("height")); Template t(file); QList matrices; const int bytes = size.width()*size.height(); -- libgit2 0.21.4