From a52d4f578bf1212f7c9914c2b677312cfb805994 Mon Sep 17 00:00:00 2001 From: Birte Kehr <birte.kehr@bihealth.de> Date: Thu, 25 Aug 2022 14:42:31 +0200 Subject: [PATCH] Replacing popins2 by popins4snake in status messages. --- src/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util.h b/src/util.h index 73f6f45..45abe55 100644 --- a/src/util.h +++ b/src/util.h @@ -1,6 +1,6 @@ /*! * \file src/util.h -* \brief Header for popins2 utility functions +* \brief Header for popins4snake utility functions * */ #ifndef POPINS2_UTIL_H_ @@ -51,7 +51,7 @@ inline void printTimeStatus(const char * message){ time_t now = time(0); struct tm tstruct; tstruct = *localtime(&now); - strftime(timestamp, sizeof(timestamp), "[popins2 %Y-%m-%d %X] ", &tstruct); + strftime(timestamp, sizeof(timestamp), "[popins4snake %Y-%m-%d %X] ", &tstruct); // Print time and message. std::cerr << timestamp << message << std::endl; @@ -355,7 +355,7 @@ void printStatus(const char * message) time_t now = time(0); struct tm tstruct; tstruct = *localtime(&now); - strftime(timestamp, sizeof(timestamp), "[popins2 %Y-%m-%d %X] ", &tstruct); + strftime(timestamp, sizeof(timestamp), "[popins4snake %Y-%m-%d %X] ", &tstruct); // Print time and message. std::cerr << timestamp << message << std::endl; -- GitLab