Skip to content

Commit

Permalink
Added back error check.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Sep 27, 2023
1 parent 341ef8c commit 5cf8e8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tlIO/RAWRead.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ namespace tl
{
ret = _processor->open_buffer(_memory->p,
_memory->size);
// LIBRAW_ERROR(open_buffer, ret);
LIBRAW_ERROR(open_buffer, ret);
}
else
{
Expand All @@ -280,7 +280,7 @@ namespace tl
#else
ret = _processor->open_file(fileName.c_str());
#endif
// LIBRAW_ERROR(open_file, ret);
LIBRAW_ERROR(open_file, ret);
}
}

Expand Down

0 comments on commit 5cf8e8d

Please sign in to comment.