Update to 0.3.4 version of the program
diff --git a/support.cc b/support.cc
index d3a6357..8ee5f33 100644
--- a/support.cc
+++ b/support.cc
@@ -96,6 +96,7 @@
       if (num <= 0) {
          response = (unsigned long long) high;
 	 suffix = ' ';
+         plusFlag = 0;
       } // if
 
       // Set multiplier based on suffix
@@ -124,7 +125,7 @@
       response *= (unsigned long long) mult;
       if (plusFlag == 1) {
          response = response + (unsigned long long) low - 1;
-      } // if/else
+      } // if
    } // while
    return ((uint64_t) response);
 } // GetLastSector()