From e523a0dc616550b1394c2a5edc0b2772f64ca1e1 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <sourcetree@thinkyhead.com>
Date: Wed, 20 Apr 2016 12:34:55 -0700
Subject: [PATCH] Fix bug in TWIBus ctor declaration

---
 Marlin/twibus.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/twibus.cpp b/Marlin/twibus.cpp
index 84d69df740..d17648cec1 100644
--- a/Marlin/twibus.cpp
+++ b/Marlin/twibus.cpp
@@ -28,7 +28,7 @@
 
 #include <Wire.h>
 
-TWIBus::twibus() {
+TWIBus::TWIBus() {
   Wire.begin(); // We use no address so we will join the BUS as the master
   this->reset();
 }