From 633b99f818a974d7dd1f0498fb38d36d4ad5ca82 Mon Sep 17 00:00:00 2001 From: Simon Schmidt Date: Wed, 30 Jun 2021 09:34:11 +0200 Subject: [PATCH] missing ret val --- lib/httpserver/httpserver.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/httpserver/httpserver.cpp b/lib/httpserver/httpserver.cpp index ad21a4a..a053852 100644 --- a/lib/httpserver/httpserver.cpp +++ b/lib/httpserver/httpserver.cpp @@ -1,5 +1,6 @@ #include "httpserver.h" + bool HTTPServer::start() { if(!mount_fs()) { logf("cant mount filesystem, EXIT !\n\r"); @@ -39,4 +40,5 @@ bool HTTPServer::start() { this->begin(); Serial.printf("[HTTPServer] Server active on Port 80 !\n\r"); + return true; } \ No newline at end of file