From d282a7e283a1704cdde2649c7caf130fb923051a Mon Sep 17 00:00:00 2001 From: Jeffrey Armstrong Date: Fri, 25 Jun 2021 09:17:01 -0400 Subject: Removed spurious printing when looking up instruction ids --- captain/db.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/captain/db.f90 b/captain/db.f90 index 315bd10..1f9bc01 100644 --- a/captain/db.f90 +++ b/captain/db.f90 @@ -398,7 +398,7 @@ contains type(sqlite3_stmt)::stmt str = " " - Print *, id + if(stmt%prepare(db, "SELECT name FROM instructions WHERE id=?") == SQLITE_OK) then if(stmt%bind_int(1, id) == SQLITE_OK) then if(stmt%step() == SQLITE_ROW) then -- cgit v1.2.3