From 543eadcf9ccfc716802e8cdddd15f498f9ef2d50 Mon Sep 17 00:00:00 2001 From: CmPi Date: Mon, 18 May 2020 01:09:09 +0200 Subject: [PATCH] Fix nofuss.cpp typo (#2251) --- code/espurna/nofuss.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/nofuss.cpp b/code/espurna/nofuss.cpp index 4075c0bb..9000171b 100644 --- a/code/espurna/nofuss.cpp +++ b/code/espurna/nofuss.cpp @@ -68,7 +68,7 @@ void _nofussConfigure() { NoFUSSClient.setBuild(String(__UNIX_TIMESTAMP__)); DEBUG_MSG_P(PSTR("[NOFUSS] Server : %s\n"), nofussServer.c_str()); - DEBUG_MSG_P(PSTR("[NOFUSS] Dervice: %s\n"), APP_NAME "_" DEVICE); + DEBUG_MSG_P(PSTR("[NOFUSS] Device: %s\n"), APP_NAME "_" DEVICE); DEBUG_MSG_P(PSTR("[NOFUSS] Version: %s\n"), APP_VERSION); DEBUG_MSG_P(PSTR("[NOFUSS] Build: %s\n"), String(__UNIX_TIMESTAMP__).c_str()); DEBUG_MSG_P(PSTR("[NOFUSS] Enabled\n"));