--- /dev/null
+Description: Fixed g++-7 build errors
+Author: IOhannes m zmölnig
+Forwarded: no
+Last-Update: 2017-10-30
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- giada.orig/src/gui/elems/mainWindow/mainTimer.cpp
++++ giada/src/gui/elems/mainWindow/mainTimer.cpp
+@@ -60,7 +60,7 @@
+
+ resizable(nullptr); // don't resize any widget
+
+- char buf[6]; snprintf(buf, 6, "%f", clock::getBpm());
++ char buf[320]; snprintf(buf, 320, "%f", clock::getBpm());
+ bpm->copy_label(buf);
+
+ bpm->callback(cb_bpm, (void*)this);