From ede75c9e9b849505f2ea91d00abe9073ad0b3cd4 Mon Sep 17 00:00:00 2001 From: Robbe Derks Date: Thu, 1 Jun 2023 21:37:10 +0200 Subject: [PATCH] fix typos --- selfdrive/boardd/panda.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/boardd/panda.cc b/selfdrive/boardd/panda.cc index 72c3ea36ca..625e4218f7 100644 --- a/selfdrive/boardd/panda.cc +++ b/selfdrive/boardd/panda.cc @@ -13,11 +13,11 @@ Panda::Panda(std::string serial, uint32_t bus_offset) : bus_offset(bus_offset) { // try USB first, then SPI try { handle = std::make_unique(serial); - LOGW("conntected to %s over USB", serial.c_str()); + LOGW("connected to %s over USB", serial.c_str()); } catch (std::exception &e) { #ifndef __APPLE__ handle = std::make_unique(serial); - LOGW("conntected to %s over SPI", serial.c_str()); + LOGW("connected to %s over SPI", serial.c_str()); #endif }