]> diplodocus.org Git - nmh/commitdiff
mhlsbr.c: Don't need to `else' after longjmp() at end of then-block.
authorRalph Corderoy <ralph@inputplus.co.uk>
Mon, 28 Aug 2017 17:08:31 +0000 (18:08 +0100)
committerRalph Corderoy <ralph@inputplus.co.uk>
Mon, 28 Aug 2017 17:08:31 +0000 (18:08 +0100)
uip/mhlsbr.c

index 00dde630206a2754dcf0c8b5a602156026ed8f15..7625312e763899f290d6f9d9e7a3d1a8146d8302 100644 (file)
@@ -1646,8 +1646,7 @@ mhldone (int status)
     exitstat = status;
     if (mhl_action)
        longjmp (mhlenv, DONE);
-    else
-       done (exitstat);
+    done (exitstat);
 }