diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-15 08:45:39 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-15 08:45:39 +0100 |
commit | dfd6e788171a5103c1c5e7e15e7f636f4fcad161 (patch) | |
tree | cd6fbc16c5f18ccc73e6c4eebd73aa60fe222157 | |
parent | 7d68fdafcd42e42c8bceeb384af7be1b5dfd3a65 (diff) | |
download | sciteco-dfd6e788171a5103c1c5e7e15e7f636f4fcad161.tar.gz |
minor change to avoid compiler warning
-rw-r--r-- | parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -894,7 +894,7 @@ StateCondCommand::StateCondCommand() : State() State * StateCondCommand::custom(gchar chr) { - gint64 value; + gint64 value = 0; bool result; switch (mode) { |