Remove unused ret variable in cmd_info().

This commit is contained in:
Nicolás A. Ortega Froysa 2024-10-12 10:27:59 +02:00
parent d30f8df5c1
commit 2434a516cd

View File

@ -134,7 +134,6 @@ int cmd_info(const int id) {
db db;
struct recipe recipe;
std::vector<std::string> ingredients, tags;
int ret = EXIT_SUCCESS;
db.open();
@ -164,5 +163,5 @@ int cmd_info(const int id) {
std::cout << "\t- " << tag << std::endl;
std::cout << std::endl;
return ret;
return EXIT_SUCCESS;
}