From 07f57a1e9b42d26ec99fee27339f67808afc1276 Mon Sep 17 00:00:00 2001 From: joevt Date: Sun, 4 Jun 2023 02:24:37 -0700 Subject: [PATCH] Remove extra semi-colons. --- devices/common/ofnvram.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/devices/common/ofnvram.cpp b/devices/common/ofnvram.cpp index a43a850..8082a33 100644 --- a/devices/common/ofnvram.cpp +++ b/devices/common/ofnvram.cpp @@ -89,7 +89,7 @@ bool OfConfigAppl::validate() { return false; return true; -}; +} uint16_t OfConfigAppl::checksum_partition() { uint32_t acc = 0; @@ -178,7 +178,7 @@ const OfConfigImpl::config_dict& OfConfigAppl::get_config_vars() { } return _config_vars; -}; +} void OfConfigAppl::update_partition() { // set checksum in the header to zero @@ -300,7 +300,7 @@ bool OfConfigAppl::set_var(std::string& var_name, std::string& value) { } return true; -}; +} uint8_t OfConfigChrp::checksum_hdr(const uint8_t* data) { @@ -505,7 +505,7 @@ bool OfConfigChrp::set_var(std::string& var_name, std::string& value) { } return this->update_partition(); -}; +} int OfConfigUtils::init() {