From ad77fbe86b3cf7e5a65420efd875a1488ff63411 Mon Sep 17 00:00:00 2001 From: Ralf Ramsauer Date: Thu, 17 Sep 2015 14:43:36 +0200 Subject: [PATCH] Typo --- doorlockd/door.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doorlockd/door.cpp b/doorlockd/door.cpp index 7f5e046..0ba1db3 100644 --- a/doorlockd/door.cpp +++ b/doorlockd/door.cpp @@ -169,7 +169,7 @@ bool Door::writeCMD(char c) if (readByte(response, Milliseconds(100))) { if (c != response) { - _logger(LogLevel::error, "Sent command '%c' but gor response '%c'", c, response); + _logger(LogLevel::error, "Sent command '%c' but got response '%c'", c, response); return false; } return true;