diff --git a/src/input/readers/SQLite.cc b/src/input/readers/SQLite.cc index 53a3609e24..955e821a53 100644 --- a/src/input/readers/SQLite.cc +++ b/src/input/readers/SQLite.cc @@ -149,7 +149,6 @@ Value* SQLite::EntryToVal(sqlite3_stmt *st, const threading::Field *field, int p case TYPE_INT: val->val.int_val = sqlite3_column_int64(st, pos); - printf("Value: %d\n", val->val.int_val); break; case TYPE_DOUBLE: diff --git a/src/logging/writers/SQLite.cc b/src/logging/writers/SQLite.cc index 1028710fc0..56e8a23d4e 100644 --- a/src/logging/writers/SQLite.cc +++ b/src/logging/writers/SQLite.cc @@ -294,7 +294,7 @@ void SQLite::ValToAscii(ODesc* desc, Value* val) case TYPE_VECTOR: assert(false); // this would mean that we have a table/vector inside a table/vector. - // that is not possible and shoulr have been caught way earlier. + // that is not possible and should have been caught way earlier. default: // there may not be any types that we do not know here.