diff --git a/src/ssb.db.c b/src/ssb.db.c index a483934c..b8961fa4 100644 --- a/src/ssb.db.c +++ b/src/ssb.db.c @@ -378,7 +378,6 @@ bool tf_ssb_db_blob_get(tf_ssb_t* ssb, const char* id, uint8_t** out_blob, size_ { const uint8_t* blob = sqlite3_column_blob(statement, 0); int size = sqlite3_column_bytes(statement, 0); - printf("bytes = %d\n", size); if (out_blob) { *out_blob = tf_malloc(size + 1);