From 72b0efd393d3a5a07faec95f6912e7eaac5434e0 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Sun, 25 Jun 2017 19:09:14 +0100 Subject: [PATCH] Remove possible switch case fall through Luckily there were no side effects in this... case --- src/common.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common.cc b/src/common.cc index dff45526..4b0b5635 100644 --- a/src/common.cc +++ b/src/common.cc @@ -438,9 +438,11 @@ namespace sharp { // Southeast left = inWidth - outWidth; top = inHeight - outHeight; + break; case 7: // Southwest top = inHeight - outHeight; + break; case 8: // Northwest break;