Commit 931cd8fb authored by Paul Asmuth's avatar Paul Asmuth
Browse files

small fix, bump to 0.0.4

parent 758fbfb9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ name := "FnordMetric Enterprise"

organization := "com.paulasmuth"

version := "0.0.3"
version := "0.0.4"

mainClass in (Compile, run) := Some("com.fnordmetric.enterprise.FnordMetric")

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ import scala.collection.mutable.HashMap

object FnordMetric {

  val VERSION = "v0.0.3"
  val VERSION = "v0.0.4"

  val CONFIG  = HashMap[Symbol,String]()

+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ class SwapFile(metric_key: MetricKey) {
    while (read_pos >= 0) {
      chunk.position(read_pos)

      if (chunk.getShort != 0x1717) {
      if (chunk.getShort != 0x1717 && read_pos != 0) {
        FnordMetric.error("file corrupted: " + file_name, false)
        return position - chunk_size
      }