Skip to content

Commit

Permalink
Add semicolons to fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Apr 25, 2024
1 parent 617e729 commit c0cb417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_imagingcms.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ _buildTransform(
iRenderingIntent,
cmsFLAGS);

Py_END_ALLOW_THREADS
Py_END_ALLOW_THREADS;

if (!hTransform) {
PyErr_SetString(PyExc_ValueError, "cannot build transform");
Expand Down Expand Up @@ -419,7 +419,7 @@ _buildProofTransform(
iProofIntent,
cmsFLAGS);

Py_END_ALLOW_THREADS
Py_END_ALLOW_THREADS;

if (!hTransform) {
PyErr_SetString(PyExc_ValueError, "cannot build proof transform");
Expand Down

0 comments on commit c0cb417

Please sign in to comment.